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

◆ read_float32()

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

Definition at line 364 of file rt_serialize.c.

364 {
365
366 union {
367 float f;
368 uint32_t i;
369 } ret;
370
371 ret.i = read_uint32(from, littleEndian);
372
373 return ret.f;
374}
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: