Lines Matching refs:pname
102 void verifyShaderParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint shader, GLenum pname, GLenum reference)
105 gl.glGetShaderiv(shader, pname, &state);
111 bool verifyProgramParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLenum pname, GLenum reference)
114 gl.glGetProgramiv(program, pname, &state);
119 void verifyActiveUniformParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLuint index, GLenum pname, GLenum reference)
122 gl.glGetActiveUniformsiv(program, 1, &index, pname, &state);
128 void verifyActiveUniformBlockParam (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLuint program, GLuint blockIndex, GLenum pname, GLenum reference)
131 gl.glGetActiveUniformBlockiv(program, blockIndex, pname, &state);
248 void verifyVertexAttrib (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLint index, GLenum pname, GLenum reference)
251 gl.glGetVertexAttribIiv(index, pname, &state);