Searched refs:wrapValues (Results 1 – 2 of 2) sorted by relevance
/external/deqp/modules/gles2/functional/ |
D | es2fTextureStateQueryTests.cpp | 239 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/ |
D | glsTextureStateQueryTests.cpp | 1130 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in test() local 1134 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test() 1138 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test() 1146 const glw::GLuint value = wrapValues[ndx]; in test() 1151 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test() 1156 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test() 1158 gl.glTexParameteri(m_target, m_pname, wrapValues[ndx]); in test() 1161 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test() 1166 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test() 1168 gl.glTexParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test() [all …]
|