Lines Matching refs:shaderObject
390 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType)); in test() local
392 TCU_CHECK(shaderObject != 0); in test()
394 glDeleteShader(shaderObject); in test()
412 bool checkCompileStatus (const GLuint shaderObject) in checkCompileStatus() argument
415 glGetShaderiv(shaderObject, GL_COMPILE_STATUS, &compileStatus); in checkCompileStatus()
424 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType)); in test() local
426 TCU_CHECK(shaderObject != 0); in test()
428 glShaderSource(shaderObject, 1, &shaderSource, 0); in test()
429 glCompileShader(shaderObject); in test()
431 TCU_CHECK(checkCompileStatus(shaderObject)); in test()
433 glDeleteShader(shaderObject); in test()