• Home
  • Raw
  • Download

Lines Matching refs:posLoc

1700 	GLint posLoc = thread.gl.getAttribLocation(m_program->program, "a_pos");  in exec()  local
1702 …thread.newMessage() << "End -- " << posLoc << " = glGetAttribLocation()" << tcu::ThreadUtil::Messa… in exec()
1704 …thread.newMessage() << "Begin -- glEnableVertexAttribArray(" << posLoc << ")" << tcu::ThreadUtil::… in exec()
1705 GLU_CHECK_GLW_CALL(thread.gl, enableVertexAttribArray(posLoc)); in exec()
1712 …thread.newMessage() << "Begin -- glVertexAttribPointer(" << posLoc << ", GL_BYTE, GL_TRUE, 0, 0)" … in exec()
1713 GLU_CHECK_GLW_CALL(thread.gl, vertexAttribPointer(posLoc, 2, GL_BYTE, GL_TRUE, 0, 0)); in exec()
1724 …thread.newMessage() << "Begin -- glDisableVertexAttribArray(" << posLoc << ")" << tcu::ThreadUtil:… in exec()
1725 GLU_CHECK_GLW_CALL(thread.gl, disableVertexAttribArray(posLoc)); in exec()
1784 GLint posLoc = thread.gl.getAttribLocation(m_program->program, "a_pos"); in exec() local
1786 …thread.newMessage() << "End -- " << posLoc << " = glGetAttribLocation()" << tcu::ThreadUtil::Messa… in exec()
1788 …thread.newMessage() << "Begin -- glEnableVertexAttribArray(" << posLoc << ")" << tcu::ThreadUtil::… in exec()
1789 GLU_CHECK_GLW_CALL(thread.gl, enableVertexAttribArray(posLoc)); in exec()
1807 …thread.newMessage() << "Begin -- glVertexAttribPointer(" << posLoc << ", GL_FLOAT, GL_FALSE, 0, <d… in exec()
1808 GLU_CHECK_GLW_CALL(thread.gl, vertexAttribPointer(posLoc, 2, GL_FLOAT, GL_FALSE, 0, coords)); in exec()
1823 …thread.newMessage() << "Begin -- glDisableVertexAttribArray(" << posLoc << ")" << tcu::ThreadUtil:… in exec()
1824 GLU_CHECK_GLW_CALL(thread.gl, disableVertexAttribArray(posLoc)); in exec()