Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/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()
/third_party/vk-gl-cts/modules/glshared/
DglsTextureStateQueryTests.cpp1129 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in test() local
1133 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1137 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test()
1145 const glw::GLuint value = wrapValues[ndx]; in test()
1150 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1155 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1157 gl.glTexParameteri(m_target, m_pname, wrapValues[ndx]); in test()
1160 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1165 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1167 gl.glTexParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test()
[all …]