PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_drop_bbox()

void lwgeom_drop_bbox ( LWGEOM lwgeom)

Call this function to drop BBOX and SRID from LWGEOM.

If LWGEOM type is not flagged with the HASBBOX flag and has a bbox, it will be released.

Definition at line 635 of file lwgeom.c.

References LWGEOM::bbox, LWGEOM::flags, FLAGS_SET_BBOX, and lwfree().

Referenced by geography_from_geometry(), geography_segmentize(), geometry_from_geography(), LWGEOM_affine(), LWGEOM_collect(), LWGEOM_collect_garray(), LWGEOM_longitude_shift(), LWGEOM_simplify2d(), LWGEOM_snaptogrid(), LWGEOM_snaptogrid_pointoff(), lwgeom_swap_ordinates(), lwline_add_lwpoint(), lwline_clip_to_ordinate_range(), lwline_setPoint4d(), lwmline_clip_to_ordinate_range(), lwmpoint_clip_to_ordinate_range(), lwpoint_clip_to_ordinate_range(), ST_RemoveRepeatedPoints(), test_gserialized_peek_gbox_p_fails_for_unsupported_cases(), transform(), and transform_geom().

636 {
637  if ( lwgeom->bbox ) lwfree(lwgeom->bbox);
638  lwgeom->bbox = NULL;
639  FLAGS_SET_BBOX(lwgeom->flags, 0);
640 }
GBOX * bbox
Definition: liblwgeom.h:398
void lwfree(void *mem)
Definition: lwutil.c:244
uint8_t flags
Definition: liblwgeom.h:397
#define FLAGS_SET_BBOX(flags, value)
Definition: liblwgeom.h:148
Here is the call graph for this function:
Here is the caller graph for this function: