HomeSort by relevance Sort by last modified time
    Searched refs:USHORT_TO_FLOAT (Results 1 - 12 of 12) sorted by null

  /external/mesa3d/src/mesa/main/
api_arrayelt.c 352 CALL_VertexAttrib1fNV(GET_DISPATCH(), (index, USHORT_TO_FLOAT(v[0])));
364 CALL_VertexAttrib2fNV(GET_DISPATCH(), (index, USHORT_TO_FLOAT(v[0]),
365 USHORT_TO_FLOAT(v[1])));
378 CALL_VertexAttrib3fNV(GET_DISPATCH(), (index, USHORT_TO_FLOAT(v[0]),
379 USHORT_TO_FLOAT(v[1]),
380 USHORT_TO_FLOAT(v[2])));
393 CALL_VertexAttrib4fNV(GET_DISPATCH(), (index, USHORT_TO_FLOAT(v[0]),
394 USHORT_TO_FLOAT(v[1]),
395 USHORT_TO_FLOAT(v[2]),
396 USHORT_TO_FLOAT(v[3])))
    [all...]
api_loopback.c 131 COLORF( USHORT_TO_FLOAT(red), USHORT_TO_FLOAT(green),
132 USHORT_TO_FLOAT(blue), 1.0 );
180 COLORF( USHORT_TO_FLOAT(v[0]), USHORT_TO_FLOAT(v[1]),
181 USHORT_TO_FLOAT(v[2]), 1.0 );
232 COLORF( USHORT_TO_FLOAT(red), USHORT_TO_FLOAT(green),
233 USHORT_TO_FLOAT(blue), USHORT_TO_FLOAT(alpha) )
    [all...]
format_unpack.c 360 dst[i][BCOMP] = USHORT_TO_FLOAT( s[i] & 0xffff );
361 dst[i][ACOMP] = USHORT_TO_FLOAT( s[i] >> 16 );
373 dst[i][BCOMP] = USHORT_TO_FLOAT( s[i] >> 16 );
374 dst[i][ACOMP] = USHORT_TO_FLOAT( s[i] & 0xffff );
414 dst[i][ACOMP] = USHORT_TO_FLOAT(s[i]);
439 dst[i][BCOMP] = USHORT_TO_FLOAT(s[i]);
466 dst[i][ACOMP] = USHORT_TO_FLOAT(s[i]);
565 dst[i][RCOMP] = USHORT_TO_FLOAT(s[i]);
578 dst[i][RCOMP] = USHORT_TO_FLOAT( s[i] & 0xffff );
579 dst[i][GCOMP] = USHORT_TO_FLOAT( s[i] >> 16 )
    [all...]
image.c 530 dst4[i][RCOMP] = USHORT_TO_FLOAT(src2[i][RCOMP]);
531 dst4[i][GCOMP] = USHORT_TO_FLOAT(src2[i][GCOMP]);
532 dst4[i][BCOMP] = USHORT_TO_FLOAT(src2[i][BCOMP]);
533 dst4[i][ACOMP] = USHORT_TO_FLOAT(src2[i][ACOMP]);
macros.h 68 #define USHORT_TO_FLOAT(S) ((GLfloat) (S) * (1.0F / 65535.0F))
pixel.c 327 fvalues[i] = USHORT_TO_FLOAT( values[i] );
pack.c     [all...]
dlist.c     [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfetch_tmp.h 775 texel[RCOMP] = USHORT_TO_FLOAT(s);
807 texel[RCOMP] = USHORT_TO_FLOAT( s & 0xffff );
808 texel[GCOMP] = USHORT_TO_FLOAT( s >> 16 );
823 texel[RCOMP] = USHORT_TO_FLOAT( s >> 16 );
824 texel[GCOMP] = USHORT_TO_FLOAT( s & 0xffff );
841 texel[BCOMP] = USHORT_TO_FLOAT( s & 0xffff );
842 texel[ACOMP] = USHORT_TO_FLOAT( s >> 16 );
857 texel[BCOMP] = USHORT_TO_FLOAT( s >> 16 );
858 texel[ACOMP] = USHORT_TO_FLOAT( s & 0xffff );
907 texel[ACOMP] = USHORT_TO_FLOAT( src[0] )
    [all...]
s_blend.c 865 rgbaF[i][RCOMP] = USHORT_TO_FLOAT(rgba[i][RCOMP]);
866 rgbaF[i][GCOMP] = USHORT_TO_FLOAT(rgba[i][GCOMP]);
867 rgbaF[i][BCOMP] = USHORT_TO_FLOAT(rgba[i][BCOMP]);
868 rgbaF[i][ACOMP] = USHORT_TO_FLOAT(rgba[i][ACOMP]);
869 destF[i][RCOMP] = USHORT_TO_FLOAT(dest[i][RCOMP]);
870 destF[i][GCOMP] = USHORT_TO_FLOAT(dest[i][GCOMP]);
871 destF[i][BCOMP] = USHORT_TO_FLOAT(dest[i][BCOMP]);
872 destF[i][ACOMP] = USHORT_TO_FLOAT(dest[i][ACOMP]);
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_draw.c 201 CONVERT(GLushort, USHORT_TO_FLOAT);
  /external/mesa3d/src/mesa/math/
m_translate.c 281 #define TRX_3FN(f,n) USHORT_TO_FLOAT( PTR_ELT(f,n) )
283 #define TRX_4FN(f,n) USHORT_TO_FLOAT( PTR_ELT(f,n) )

Completed in 629 milliseconds