Searched refs:conv_ui10_to_norm_float (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/mesa/vbo/ |
D | vbo_attrib_tmp.h | 70 static inline float conv_ui10_to_norm_float(unsigned ui10) in conv_ui10_to_norm_float() function 85 #define ATTRUI10N_1( A, UI ) ATTR( A, 1, GL_FLOAT, conv_ui10_to_norm_float((UI) & 0x3ff), 0, 0, 1 ) 87 conv_ui10_to_norm_float((UI) & 0x3ff), \ 88 conv_ui10_to_norm_float(((UI) >> 10) & 0x3ff), 0, 1 ) 90 conv_ui10_to_norm_float((UI) & 0x3ff), \ 91 conv_ui10_to_norm_float(((UI) >> 10) & 0x3ff), \ 92 conv_ui10_to_norm_float(((UI) >> 20) & 0x3ff), 1 ) 94 conv_ui10_to_norm_float((UI) & 0x3ff), \ 95 conv_ui10_to_norm_float(((UI) >> 10) & 0x3ff), \ 96 conv_ui10_to_norm_float(((UI) >> 20) & 0x3ff), \
|