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

◆ rt_pixtype

enum rt_pixtype
Enumerator
PT_1BB 
PT_2BUI 
PT_4BUI 
PT_8BSI 
PT_8BUI 
PT_16BSI 
PT_16BUI 
PT_32BSI 
PT_32BUI 
PT_16BF 
PT_32BF 
PT_64BF 
PT_END 

Definition at line 187 of file librtcore.h.

188{
189 PT_1BB = 0, /* 1-bit boolean */
190 PT_2BUI = 1, /* 2-bit unsigned integer */
191 PT_4BUI = 2, /* 4-bit unsigned integer */
192 PT_8BSI = 3, /* 8-bit signed integer */
193 PT_8BUI = 4, /* 8-bit unsigned integer */
194 PT_16BSI = 5, /* 16-bit signed integer */
195 PT_16BUI = 6, /* 16-bit unsigned integer */
196 PT_32BSI = 7, /* 32-bit signed integer */
197 PT_32BUI = 8, /* 32-bit unsigned integer */
198 PT_16BF = 9, /* 16-bit float */
199 PT_32BF = 10, /* 32-bit float */
200 PT_64BF = 11, /* 64-bit float */
201 PT_END = 13
202} rt_pixtype;
rt_pixtype
Definition librtcore.h:188
@ PT_32BUI
Definition librtcore.h:197
@ PT_16BF
Definition librtcore.h:198
@ PT_2BUI
Definition librtcore.h:190
@ PT_32BSI
Definition librtcore.h:196
@ PT_END
Definition librtcore.h:201
@ PT_4BUI
Definition librtcore.h:191
@ PT_32BF
Definition librtcore.h:199
@ PT_1BB
Definition librtcore.h:189
@ PT_16BUI
Definition librtcore.h:195
@ PT_8BSI
Definition librtcore.h:192
@ PT_16BSI
Definition librtcore.h:194
@ PT_64BF
Definition librtcore.h:200
@ PT_8BUI
Definition librtcore.h:193