OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wrapValues
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/gles2/functional/
es2fTextureStateQueryTests.cpp
239
const GLenum
wrapValues
[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT};
244
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
246
glTexParameteri(m_textureTarget, m_valueName,
wrapValues
[ndx]);
249
m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName,
wrapValues
[ndx]);
255
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
257
glTexParameterf(m_textureTarget, m_valueName, (GLfloat)
wrapValues
[ndx]);
260
m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName,
wrapValues
[ndx]);
/external/deqp/modules/gles3/functional/
es3fSamplerStateQueryTests.cpp
238
const GLenum
wrapValues
[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT};
240
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
242
glSamplerParameteri(m_sampler, m_valueName,
wrapValues
[ndx]);
245
m_verifier->verifyInteger(m_testCtx, m_sampler, m_valueName,
wrapValues
[ndx]);
251
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
253
glSamplerParameterf(m_sampler, m_valueName, (GLfloat)
wrapValues
[ndx]);
256
m_verifier->verifyInteger(m_testCtx, m_sampler, m_valueName,
wrapValues
[ndx]);
es3fTextureStateQueryTests.cpp
314
const GLenum
wrapValues
[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT};
316
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
318
glTexParameteri(m_textureTarget, m_valueName,
wrapValues
[ndx]);
321
m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName,
wrapValues
[ndx]);
327
for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(
wrapValues
); ++ndx)
329
glTexParameterf(m_textureTarget, m_valueName, (GLfloat)
wrapValues
[ndx]);
332
m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName,
wrapValues
[ndx]);
Completed in 463 milliseconds