Searched refs:colorLocation (Results 1 - 5 of 5) sorted by relevance

/external/deqp/modules/egl/
H A DteglGLES2SharingTests.cpp409 GLuint colorLocation = m_gl.getAttribLocation(program.getProgram(), "a_color"); local
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"); local
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"); local
[all...]
H A DteglNativeColorMappingTests.cpp233 deUint32 colorLocation; local
240 colorLocation = gl.getUniformLocation(program, "u_color");
241 gl.uniform4fv(colorLocation, 1, color.getPtr());
/external/deqp/modules/gles31/stress/
H A Des31sDrawTests.cpp185 const deInt32 colorLocation = gl.glGetAttribLocation(programID, "a_color");
228 gl.glVertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
229 gl.glEnableVertexAttribArray(colorLocation);
230 gl.glVertexAttribDivisor(colorLocation, 1);
/external/deqp/modules/gles3/functional/
H A Des3fDrawTests.cpp689 deInt32 colorLocation = ctx.getAttribLocation(programID, "a_color"); local
737 ctx.vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
738 ctx.vertexAttribDivisor(colorLocation, 1);
739 ctx.enableVertexAttribArray(colorLocation);
/external/deqp/modules/gles31/functional/
H A Des31fDrawTests.cpp821 deInt32 colorLocation = ctx.getAttribLocation(programID, "a_color"); local
872 ctx.vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
873 ctx.vertexAttribDivisor(colorLocation, 1);
874 ctx.enableVertexAttribArray(colorLocation);

Completed in 96 milliseconds