Home | History | Annotate | Download | only in egl

Lines Matching refs:colorLocation

409 	GLuint colorLocation = m_gl.getAttribLocation(program.getProgram(), "a_color");
411 TCU_CHECK(colorLocation != (GLuint)-1);
413 GLU_CHECK_GLW_CALL(m_gl, enableVertexAttribArray(colorLocation));
417 GLU_CHECK_GLW_CALL(m_gl, vertexAttribPointer(colorLocation, 1, GL_UNSIGNED_BYTE, GL_TRUE, 0, DE_NULL));
423 GLU_CHECK_GLW_CALL(m_gl, disableVertexAttribArray(colorLocation));
723 GLuint colorLocation = m_gl.getAttribLocation(m_program->getProgram(), "a_color");
725 TCU_CHECK(colorLocation != (GLuint)-1);
727 GLU_CHECK_GLW_CALL(m_gl, enableVertexAttribArray(colorLocation));
730 GLU_CHECK_GLW_CALL(m_gl, vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, colors));
735 GLU_CHECK_GLW_CALL(m_gl, disableVertexAttribArray(colorLocation));
1012 GLuint colorLocation = m_gl.getAttribLocation(program, "a_color");
1014 TCU_CHECK(colorLocation != (GLuint)-1);
1016 GLU_CHECK_GLW_CALL(m_gl, enableVertexAttribArray(colorLocation));
1019 GLU_CHECK_GLW_CALL(m_gl, vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, colors));
1024 GLU_CHECK_GLW_CALL(m_gl, disableVertexAttribArray(colorLocation));