Home
last modified time | relevance | path

Searched refs:wrapValues (Results 1 – 2 of 2) sorted by relevance

/external/deqp/modules/gles2/functional/
Des2fTextureStateQueryTests.cpp239 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in testTexture() local
244 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in testTexture()
246 glTexParameteri(m_textureTarget, m_valueName, wrapValues[ndx]); in testTexture()
249 m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName, wrapValues[ndx]); in testTexture()
255 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in testTexture()
257 glTexParameterf(m_textureTarget, m_valueName, (GLfloat)wrapValues[ndx]); in testTexture()
260 m_verifier->verifyInteger(m_testCtx, m_textureTarget, m_valueName, wrapValues[ndx]); in testTexture()
/external/deqp/modules/glshared/
DglsTextureStateQueryTests.cpp1065 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in test() local
1069 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1073 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test()
1081 const glw::GLuint value = wrapValues[ndx]; in test()
1086 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1091 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1093 gl.glTexParameteri(m_target, m_pname, wrapValues[ndx]); in test()
1096 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1101 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1103 gl.glTexParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test()
[all …]