summaryrefslogtreecommitdiffstats
path: root/opengl
diff options
context:
space:
mode:
authorbohu <bohu@google.com>2014-12-09 16:39:11 -0800
committerbohu <bohu@google.com>2014-12-09 16:39:11 -0800
commit2e74d05cf71810cd25ac69d656c3bfa01aef7907 (patch)
treedbdbbcad9d7c3bff9bd034c6977f719f9c2564ce /opengl
parent8e0631aab1cdc64d01d176cfaf5ca721cbe3f24d (diff)
downloadandroid_device_generic_goldfish-2e74d05cf71810cd25ac69d656c3bfa01aef7907.tar.gz
android_device_generic_goldfish-2e74d05cf71810cd25ac69d656c3bfa01aef7907.tar.bz2
android_device_generic_goldfish-2e74d05cf71810cd25ac69d656c3bfa01aef7907.zip
Fix a missed function override in GLEncoder.cpp
glColorPointer override was missed and this commit fixes that. Change-Id: I6f51c57fa6b6d8af0802d06cf42994fbb3bc80b9
Diffstat (limited to 'opengl')
-rw-r--r--opengl/system/GLESv1_enc/GLEncoder.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/opengl/system/GLESv1_enc/GLEncoder.cpp b/opengl/system/GLESv1_enc/GLEncoder.cpp
index 0fe1d8e..d6f45a8 100644
--- a/opengl/system/GLESv1_enc/GLEncoder.cpp
+++ b/opengl/system/GLESv1_enc/GLEncoder.cpp
@@ -933,6 +933,7 @@ GLEncoder::GLEncoder(IOStream *stream) : gl_encoder_context_t(stream)
OVERRIDE(glPixelStorei);
OVERRIDE(glVertexPointer);
OVERRIDE(glNormalPointer);
+ OVERRIDE(glColorPointer);
OVERRIDE(glPointSizePointerOES);
OVERRIDE(glClientActiveTexture);
OVERRIDE(glTexCoordPointer);