Lines Matching refs:shaderObject
336 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType)); in test() local
338 TCU_CHECK(shaderObject != 0); in test()
340 glDeleteShader(shaderObject); in test()
358 bool checkCompileStatus (const GLuint shaderObject) in checkCompileStatus() argument
361 glGetShaderiv(shaderObject, GL_COMPILE_STATUS, &compileStatus); in checkCompileStatus()
370 const GLuint shaderObject = glCreateShader(glu::getGLShaderType(m_shaderType)); in test() local
372 TCU_CHECK(shaderObject != 0); in test()
374 glShaderSource(shaderObject, 1, &shaderSource, 0); in test()
375 glCompileShader(shaderObject); in test()
377 TCU_CHECK(checkCompileStatus(shaderObject)); in test()
379 glDeleteShader(shaderObject); in test()