Lines Matching refs:wrapValues

944 		const GLenum				wrapValues[]	= {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT};  in test()  local
948 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
952 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test()
960 const glw::GLuint value = wrapValues[ndx]; in test()
965 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
970 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
972 gl.glTexParameteri(m_target, m_pname, wrapValues[ndx]); in test()
975 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
980 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
982 gl.glTexParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test()
985 verifyStateTextureParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1781 const GLenum wrapValues[] = {GL_CLAMP_TO_EDGE, GL_REPEAT, GL_MIRRORED_REPEAT}; in test() local
1785 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1789 const glw::GLint value = (glw::GLint)wrapValues[ndx]; in test()
1797 const glw::GLuint value = wrapValues[ndx]; in test()
1802 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1807 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1809 gl.glSamplerParameteri(m_target, m_pname, wrapValues[ndx]); in test()
1812 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()
1817 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(wrapValues); ++ndx) in test()
1819 gl.glSamplerParameterf(m_target, m_pname, (GLfloat)wrapValues[ndx]); in test()
1822 verifyStateSamplerParamInteger(result, gl, m_target, m_pname, wrapValues[ndx], m_type); in test()