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

◆ read_float32()

float read_float32 ( const uint8_t **  from,
uint8_t  littleEndian 
)

Definition at line 363 of file rt_serialize.c.

363 {
364
365 union {
366 float f;
367 uint32_t i;
368 } ret;
369
370 ret.i = read_uint32(from, littleEndian);
371
372 return ret.f;
373}
uint32_t read_uint32(const uint8_t **from, uint8_t littleEndian)

References read_uint32().

Referenced by rt_band_from_wkb(), and rt_raster_deserialize().

Here is the call graph for this function:
Here is the caller graph for this function: