Lines Matching refs:swizzleValues
1059 const GLenum swizzleValues[] = {GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_ZERO, GL_ONE}; in test() local
1063 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(swizzleValues); ++ndx) in test()
1067 const glw::GLint value = (glw::GLint)swizzleValues[ndx]; in test()
1075 const glw::GLuint value = swizzleValues[ndx]; in test()
1080 verifyStateTextureParamInteger(result, gl, m_target, m_pname, swizzleValues[ndx], m_type); in test()
1085 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(swizzleValues); ++ndx) in test()
1087 gl.glTexParameteri(m_target, m_pname, swizzleValues[ndx]); in test()
1090 verifyStateTextureParamInteger(result, gl, m_target, m_pname, swizzleValues[ndx], m_type); in test()
1095 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(swizzleValues); ++ndx) in test()
1097 gl.glTexParameterf(m_target, m_pname, (GLfloat)swizzleValues[ndx]); in test()
1100 verifyStateTextureParamInteger(result, gl, m_target, m_pname, swizzleValues[ndx], m_type); in test()