summaryrefslogtreecommitdiffstats
path: root/gpu/skia_bindings
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/skia_bindings')
-rw-r--r--gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc b/gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc
index b8079d1..2894cf7 100644
--- a/gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc
+++ b/gpu/skia_bindings/gl_bindings_skia_cmd_buffer.cc
@@ -74,6 +74,8 @@ GrGLInterface* CreateCommandBufferSkiaGLBinding() {
functions->fInsertEventMarker = glInsertEventMarkerEXT;
functions->fLineWidth = glLineWidth;
functions->fLinkProgram = glLinkProgram;
+ functions->fMapBufferSubData = glMapBufferSubDataCHROMIUM;
+ functions->fMapTexSubImage2D = glMapTexSubImage2DCHROMIUM;
functions->fPixelStorei = glPixelStorei;
functions->fPopGroupMarker = glPopGroupMarkerEXT;
functions->fPushGroupMarker = glPushGroupMarkerEXT;
@@ -110,6 +112,8 @@ GrGLInterface* CreateCommandBufferSkiaGLBinding() {
functions->fUniformMatrix2fv = glUniformMatrix2fv;
functions->fUniformMatrix3fv = glUniformMatrix3fv;
functions->fUniformMatrix4fv = glUniformMatrix4fv;
+ functions->fUnmapBufferSubData = glUnmapBufferSubDataCHROMIUM;
+ functions->fUnmapTexSubImage2D = glUnmapTexSubImage2DCHROMIUM;
functions->fUseProgram = glUseProgram;
functions->fVertexAttrib4fv = glVertexAttrib4fv;
functions->fVertexAttribPointer = glVertexAttribPointer;