Lines Matching refs:wrapValues
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()
1171 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1967 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in test() local
1971 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1975 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test()
1983 const glw::GLuint value = wrapValues[ndx]; in test()
1988 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1993 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1995 gl.glSamplerParameteri(m_target, m_pname, wrapValues[ndx]); in test()
1998 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
2003 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
2005 gl.glSamplerParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test()
2008 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()