Searched defs:TRI_ONE (Results 1 - 1 of 1) sorted by relevance

/system/core/include/private/pixelflinger/
H A Dggl_context.h92 #define TRI_ONE (1 << TRI_FRACTION_BITS) macro
95 #define TRI_FRAC(x) ((x) & (TRI_ONE-1))
96 #define TRI_FLOOR(x) ((x) & ~(TRI_ONE-1))
97 #define TRI_CEIL(x) (((x) + (TRI_ONE-1)) & ~(TRI_ONE-1))
98 #define TRI_ROUND(x) (((x) + TRI_HALF ) & ~(TRI_ONE-1))

Completed in 38 milliseconds