PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ gserialized2_from_lwpoint_size()

static size_t gserialized2_from_lwpoint_size ( const LWPOINT point)
static

Definition at line 642 of file gserialized2.c.

643{
644 size_t size = 4; /* Type number. */
645
646 assert(point);
647
648 size += 4; /* Number of points (one or zero (empty)). */
649 size += sizeof(double) * point->point->npoints * FLAGS_NDIMS(point->flags);
650
651 LWDEBUGF(3, "point size = %zu", size);
652
653 return size;
654}
#define FLAGS_NDIMS(flags)
Definition liblwgeom.h:179
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:106
POINTARRAY * point
Definition liblwgeom.h:471
lwflags_t flags
Definition liblwgeom.h:473
uint32_t npoints
Definition liblwgeom.h:427

References LWPOINT::flags, FLAGS_NDIMS, LWDEBUGF, POINTARRAY::npoints, and LWPOINT::point.

Referenced by gserialized2_from_any_size().

Here is the caller graph for this function: