Lines Matching refs:GLValue

236 class GLValue  class
346 GLValue (void) : type(Array::INPUTTYPE_LAST) {} in GLValue() function in deqp::gls::GLValue
347 explicit GLValue (Float value) : type(Array::INPUTTYPE_FLOAT), fl(value) {} in GLValue() function in deqp::gls::GLValue
348 explicit GLValue (Fixed value) : type(Array::INPUTTYPE_FIXED), fi(value) {} in GLValue() function in deqp::gls::GLValue
349 explicit GLValue (Byte value) : type(Array::INPUTTYPE_BYTE), b(value) {} in GLValue() function in deqp::gls::GLValue
350 explicit GLValue (Ubyte value) : type(Array::INPUTTYPE_UNSIGNED_BYTE), ub(value) {} in GLValue() function in deqp::gls::GLValue
351 explicit GLValue (Short value) : type(Array::INPUTTYPE_SHORT), s(value) {} in GLValue() function in deqp::gls::GLValue
352 explicit GLValue (Ushort value) : type(Array::INPUTTYPE_UNSIGNED_SHORT), us(value) {} in GLValue() function in deqp::gls::GLValue
353 explicit GLValue (Int value) : type(Array::INPUTTYPE_INT), i(value) {} in GLValue() function in deqp::gls::GLValue
354 explicit GLValue (Uint value) : type(Array::INPUTTYPE_UNSIGNED_INT), ui(value) {} in GLValue() function in deqp::gls::GLValue
355 explicit GLValue (Half value) : type(Array::INPUTTYPE_HALF), h(value) {} in GLValue() function in deqp::gls::GLValue
356 explicit GLValue (Double value) : type(Array::INPUTTYPE_DOUBLE), d(value) {} in GLValue() function in deqp::gls::GLValue
360 static GLValue getMaxValue (Array::InputType type);
361 static GLValue getMinValue (Array::InputType type);
418 …:Usage usage, int componetCount, int offset, int stride, bool normalize, GLValue min, GLValue max);
428 GLValue min;
429 GLValue max;
454 inline deFloat16 GLValue::Half::floatToHalf (float f) in floatToHalf()
462 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat()