Searched refs:conv_i10_to_i (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/mesa/vbo/ |
D | vbo_attrib_tmp.h | 113 static inline float conv_i10_to_i(int i10) in conv_i10_to_i() function 177 #define ATTRI10_1( A, I10 ) ATTRF( A, 1, conv_i10_to_i((I10) & 0x3ff), 0, 0, 1 ) 179 conv_i10_to_i((I10) & 0x3ff), \ 180 conv_i10_to_i(((I10) >> 10) & 0x3ff), 0, 1 ) 182 conv_i10_to_i((I10) & 0x3ff), \ 183 conv_i10_to_i(((I10) >> 10) & 0x3ff), \ 184 conv_i10_to_i(((I10) >> 20) & 0x3ff), 1 ) 186 conv_i10_to_i((I10) & 0x3ff), \ 187 conv_i10_to_i(((I10) >> 10) & 0x3ff), \ 188 conv_i10_to_i(((I10) >> 20) & 0x3ff), \
|