PostGIS 3.0.6dev-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 673 of file gserialized2.c.

674{
675 size_t size = 4; /* Type number. */
676
677 assert(point);
678
679 size += 4; /* Number of points (one or zero (empty)). */
680 size += point->point->npoints * FLAGS_NDIMS(point->flags) * sizeof(double);
681
682 LWDEBUGF(3, "point size = %d", size);
683
684 return size;
685}
#define FLAGS_NDIMS(flags)
Definition liblwgeom.h:193
#define LWDEBUGF(level, msg,...)
Definition lwgeom_log.h:88
POINTARRAY * point
Definition liblwgeom.h:457
lwflags_t flags
Definition liblwgeom.h:459
uint32_t npoints
Definition liblwgeom.h:413

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: