Lines Matching refs:GLValue
237 class GLValue class
385 GLValue (void) : type(Array::INPUTTYPE_LAST) {} in GLValue() function in deqp::gls::GLValue
386 explicit GLValue (Float value) : type(Array::INPUTTYPE_FLOAT), fl(value) {} in GLValue() function in deqp::gls::GLValue
387 explicit GLValue (Fixed value) : type(Array::INPUTTYPE_FIXED), fi(value) {} in GLValue() function in deqp::gls::GLValue
388 explicit GLValue (Byte value) : type(Array::INPUTTYPE_BYTE), b(value) {} in GLValue() function in deqp::gls::GLValue
389 explicit GLValue (Ubyte value) : type(Array::INPUTTYPE_UNSIGNED_BYTE), ub(value) {} in GLValue() function in deqp::gls::GLValue
390 explicit GLValue (Short value) : type(Array::INPUTTYPE_SHORT), s(value) {} in GLValue() function in deqp::gls::GLValue
391 explicit GLValue (Ushort value) : type(Array::INPUTTYPE_UNSIGNED_SHORT), us(value) {} in GLValue() function in deqp::gls::GLValue
392 explicit GLValue (Int value) : type(Array::INPUTTYPE_INT), i(value) {} in GLValue() function in deqp::gls::GLValue
393 explicit GLValue (Uint value) : type(Array::INPUTTYPE_UNSIGNED_INT), ui(value) {} in GLValue() function in deqp::gls::GLValue
394 explicit GLValue (Half value) : type(Array::INPUTTYPE_HALF), h(value) {} in GLValue() function in deqp::gls::GLValue
395 explicit GLValue (Double value) : type(Array::INPUTTYPE_DOUBLE), d(value) {} in GLValue() function in deqp::gls::GLValue
399 static GLValue getMaxValue (Array::InputType type);
400 static GLValue getMinValue (Array::InputType type);
457 …:Usage usage, int componetCount, int offset, int stride, bool normalize, GLValue min, GLValue max);
467 GLValue min;
468 GLValue max;
493 inline deFloat16 GLValue::Half::floatToHalf (float f) in floatToHalf()
501 inline float GLValue::Half::halfToFloat (deFloat16 h) in halfToFloat()