Searched defs:colorLocation (Results 1 - 4 of 4) sorted by relevance

/external/deqp/modules/egl/
H A DteglNativeColorMappingTests.cpp228 deUint32 colorLocation; local
235 colorLocation = gl.getUniformLocation(program, "u_color");
236 gl.uniform4fv(colorLocation, 1, color.getPtr());
H A DteglGLES2SharingTests.cpp448 GLuint colorLocation = glGetAttribLocation(program.getProgram(), "a_color"); local
450 TCU_CHECK(colorLocation != (GLuint)-1);
452 GLU_CHECK_CALL(glEnableVertexAttribArray(colorLocation));
456 GLU_CHECK_CALL(glVertexAttribPointer(colorLocation, 1, GL_UNSIGNED_BYTE, GL_TRUE, 0, NULL));
462 GLU_CHECK_CALL(glDisableVertexAttribArray(colorLocation));
762 GLuint colorLocation = glGetAttribLocation(m_program->getProgram(), "a_color"); local
764 TCU_CHECK(colorLocation != (GLuint)-1);
766 GLU_CHECK_CALL(glEnableVertexAttribArray(colorLocation));
769 GLU_CHECK_CALL(glVertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, colors));
774 GLU_CHECK_CALL(glDisableVertexAttribArray(colorLocation));
1051 GLuint colorLocation = glGetAttribLocation(program, "a_color"); local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fDrawTests.cpp692 deInt32 colorLocation = ctx.getAttribLocation(programID, "a_color"); local
740 ctx.vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
741 ctx.vertexAttribDivisor(colorLocation, 1);
742 ctx.enableVertexAttribArray(colorLocation);
/external/deqp/modules/gles31/functional/
H A Des31fDrawTests.cpp823 deInt32 colorLocation = ctx.getAttribLocation(programID, "a_color"); local
874 ctx.vertexAttribPointer(colorLocation, 4, GL_FLOAT, GL_FALSE, 0, DE_NULL);
875 ctx.vertexAttribDivisor(colorLocation, 1);
876 ctx.enableVertexAttribArray(colorLocation);

Completed in 239 milliseconds