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

  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 259 inline GLValue::Ubyte getRandom (deRandom& rnd, GLValue::Ubyte min, GLValue::Ubyte max)
264 return GLValue::Ubyte::create((min == max ? min : (deUint8)(min + (deRandom_getUint32(&rnd) % (max.to<int>() - min.to<int>())))));
344 inline GLValue::Ubyte minValue (void)
346 return GLValue::Ubyte::create(4 * 2);
389 inline GLValue::Ubyte abs (GLValue::Ubyte val)
    [all...]
glsVertexArrayTests.hpp 310 typedef WrappedType<deUint8> Ubyte;
389 explicit GLValue (Ubyte value) : type(Array::INPUTTYPE_UNSIGNED_BYTE), ub(value) {}
410 Ubyte ub;
glsDrawTest.cpp 429 typedef WrappedType<deUint8> Ubyte;
504 explicit GLValue (Ubyte value) : type(DrawTestSpec::INPUTTYPE_UNSIGNED_BYTE), ub(value) {}
525 Ubyte ub;
609 rangesHi[(int)DrawTestSpec::INPUTTYPE_UNSIGNED_BYTE] = GLValue(Ubyte::create(255));
627 rangesLo[(int)DrawTestSpec::INPUTTYPE_UNSIGNED_BYTE] = GLValue(Ubyte::create(0));
644 template<> struct GLValueTypeTraits<GLValue::Ubyte> { static const DrawTestSpec::InputType Type = DrawTestSpec::INPUTTYPE_UNSIGNED_BYTE; };
658 template<> GLValue::Ubyte inline extractGLValue<GLValue::Ubyte> (const GLValue& v) { return v.ub; };
715 inline GLValue::Ubyte getRandom (deRandom& rnd, GLValue::Ubyte min, GLValue::Ubyte max
    [all...]

Completed in 55 milliseconds