Home | History | Annotate | Download | only in functional

Lines Matching refs:deUint16

258 	DE_STATIC_ASSERT((isSameType<deFloat16, deUint16>::V));
260 deUint16 r;
261 deUint16 g;
262 deUint16 b;
263 deUint16 a;
266 VoidExtentParams (bool isHDR_, deUint16 r_, deUint16 g_, deUint16 b_, deUint16 a_) : isHDR(isHDR_), r(r_), g(g_), b(b_), a(a_) {}
974 const deUint16 r = (deUint16)((baseValue + numValues*0/4) % numValues);
975 const deUint16 g = (deUint16)((baseValue + numValues*1/4) % numValues);
976 const deUint16 b = (deUint16)((baseValue + numValues*2/4) % numValues);
977 const deUint16 a = (deUint16)((baseValue + numValues*3/4) % numValues);
1389 const deUint16 r = isVoidExtentHDR ? deFloat32To16(rnd.getFloat(0.0f, 1.0f)) : rnd.getInt(0, 0xffff);
1390 const deUint16 g = isVoidExtentHDR ? deFloat32To16(rnd.getFloat(0.0f, 1.0f)) : rnd.getInt(0, 0xffff);
1391 const deUint16 b = isVoidExtentHDR ? deFloat32To16(rnd.getFloat(0.0f, 1.0f)) : rnd.getInt(0, 0xffff);
1392 const deUint16 a = isVoidExtentHDR ? deFloat32To16(rnd.getFloat(0.0f, 1.0f)) : rnd.getInt(0, 0xffff);