Lines Matching refs:coordLoc
222 deUint32 coordLoc = -1; in render() local
227 coordLoc = glGetAttribLocation(m_program->getProgram(), "a_coord"); in render()
229 TCU_CHECK(coordLoc != (deUint32)-1); in render()
234 GLU_CHECK_CALL(glEnableVertexAttribArray(coordLoc)); in render()
237 GLU_CHECK_CALL(glVertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, NULL)); in render()
251 GLU_CHECK_CALL(glDisableVertexAttribArray(coordLoc)); in render()
391 deUint32 coordLoc = glGetAttribLocation(m_program->getProgram(), "a_coord"); in render() local
392 TCU_CHECK(coordLoc != (deUint32)-1); in render()
398 GLU_CHECK_CALL(glEnableVertexAttribArray(coordLoc)); in render()
401 GLU_CHECK_CALL(glVertexAttribPointer(coordLoc, 2, GL_FLOAT, GL_FALSE, 0, NULL)); in render()
411 GLU_CHECK_CALL(glDisableVertexAttribArray(coordLoc)); in render()