Commit f0e6a400 by Maxime Gregoire Committed by Maxime Grégoire

OpenGL ES 1.1 colorPointer function implementation

Change-Id: I3ebc7fe90ced42f43c8adb4b69205dc26096d963 Reviewed-on: https://swiftshader-review.googlesource.com/1800Tested-by: 's avatarMaxime Grégoire <mgregoire@google.com> Reviewed-by: 's avatarNicolas Capens <capn@google.com>
parent 7374bc9e
...@@ -856,7 +856,9 @@ void GL_APIENTRY glVertexAttribPointer(GLuint index, GLint size, GLenum type, GL ...@@ -856,7 +856,9 @@ void GL_APIENTRY glVertexAttribPointer(GLuint index, GLint size, GLenum type, GL
void GL_APIENTRY glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) void GL_APIENTRY glColorPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)
{ {
UNIMPLEMENTED(); TRACE("(GLint size = %d, GLenum type = 0x%X, GLsizei stride = %d, const GLvoid *pointer = 0x%0.8p)", size, type, stride, pointer);
glVertexAttribPointer(sw::Color0, size, type, false, stride, pointer);
} }
void GL_APIENTRY glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, void GL_APIENTRY glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment