OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GLValue
(Results
1 - 7
of
7
) sorted by null
/external/deqp/modules/glshared/
glsVertexArrayTests.cpp
223
inline
GLValue
::Float getRandom (deRandom& rnd,
GLValue
::Float min,
GLValue
::Float max)
228
return
GLValue
::Float::create(min + deRandom_getFloat(&rnd) * (max.to<float>() - min.to<float>()));
232
inline
GLValue
::Short getRandom (deRandom& rnd,
GLValue
::Short min,
GLValue
::Short max)
237
return
GLValue
::Short::create((min == max ? min : (deInt16)(min + (deRandom_getUint32(&rnd) % (max.to<int>() - min.to<int>())))));
241
inline
GLValue
::Ushort getRandom (deRandom& rnd,
GLValue
::Ushort min, GLValue::Ushort max
[
all
...]
glsDrawTest.cpp
387
//
GLValue
389
class
GLValue
499
GLValue
(void) : type(DrawTestSpec::INPUTTYPE_LAST) {}
500
explicit
GLValue
(Float value) : type(DrawTestSpec::INPUTTYPE_FLOAT), fl(value) {}
501
explicit
GLValue
(Fixed value) : type(DrawTestSpec::INPUTTYPE_FIXED), fi(value) {}
502
explicit
GLValue
(Byte value) : type(DrawTestSpec::INPUTTYPE_BYTE), b(value) {}
503
explicit
GLValue
(Ubyte value) : type(DrawTestSpec::INPUTTYPE_UNSIGNED_BYTE), ub(value) {}
504
explicit
GLValue
(Short value) : type(DrawTestSpec::INPUTTYPE_SHORT), s(value) {}
505
explicit
GLValue
(Ushort value) : type(DrawTestSpec::INPUTTYPE_UNSIGNED_SHORT), us(value) {}
506
explicit
GLValue
(Int value) : type(DrawTestSpec::INPUTTYPE_INT), i(value) {
[
all
...]
glsVertexArrayTests.hpp
237
class
GLValue
385
GLValue
(void) : type(Array::INPUTTYPE_LAST) {}
386
explicit
GLValue
(Float value) : type(Array::INPUTTYPE_FLOAT), fl(value) {}
387
explicit
GLValue
(Fixed value) : type(Array::INPUTTYPE_FIXED), fi(value) {}
388
explicit
GLValue
(Byte value) : type(Array::INPUTTYPE_BYTE), b(value) {}
389
explicit
GLValue
(Ubyte value) : type(Array::INPUTTYPE_UNSIGNED_BYTE), ub(value) {}
390
explicit
GLValue
(Short value) : type(Array::INPUTTYPE_SHORT), s(value) {}
391
explicit
GLValue
(Ushort value) : type(Array::INPUTTYPE_UNSIGNED_SHORT), us(value) {}
392
explicit
GLValue
(Int value) : type(Array::INPUTTYPE_INT), i(value) {}
393
explicit
GLValue
(Uint value) : type(Array::INPUTTYPE_UNSIGNED_INT), ui(value) {
[
all
...]
/external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp
97
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
98
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
167
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
168
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
238
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
239
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
306
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
307
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
/external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp
96
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
97
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
166
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
167
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
237
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
238
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
305
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
306
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
368
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
369
GLValue
::getMaxValue(inputTypes[inputTypeNdx]))
[
all
...]
/external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp
95
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
96
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
200
GLValue
::getMinValue(m_type),
201
GLValue
::getMaxValue(m_type));
303
GLValue
::getMinValue(m_type),
304
GLValue
::getMaxValue(m_type));
404
GLValue
::getMinValue(m_type),
405
GLValue
::getMaxValue(m_type));
498
GLValue
::getMinValue(m_type),
499
GLValue
::getMaxValue(m_type))
[
all
...]
/external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp
98
GLValue
::getMinValue(inputTypes[inputTypeNdx]),
99
GLValue
::getMaxValue(inputTypes[inputTypeNdx]));
203
GLValue
::getMinValue(m_type),
204
GLValue
::getMaxValue(m_type));
306
GLValue
::getMinValue(m_type),
307
GLValue
::getMaxValue(m_type));
407
GLValue
::getMinValue(m_type),
408
GLValue
::getMaxValue(m_type));
Completed in 99 milliseconds