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

/system/core/include/private/pixelflinger/
H A Dggl_context.h72 #define TRI_ONE (1 << TRI_FRACTION_BITS) macro
75 #define TRI_FRAC(x) ((x) & (TRI_ONE-1))
76 #define TRI_FLOOR(x) ((x) & ~(TRI_ONE-1))
77 #define TRI_CEIL(x) (((x) + (TRI_ONE-1)) & ~(TRI_ONE-1))
78 #define TRI_ROUND(x) (((x) + TRI_HALF ) & ~(TRI_ONE-1))

Completed in 32 milliseconds