Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
index 8150d642de0f40d32085b813f49810d6d419c69e..bcbeabf26e91384b2e8b7325c3b41a442206acbe 100644 |
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h |
@@ -2232,4 +2232,32 @@ void DiscardBackbufferCHROMIUM() { |
} |
} |
+void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order, |
+ GLenum plane_transform, |
+ GLuint overlay_texture_id, |
+ GLint bounds_x, |
+ GLint bounds_y, |
+ GLint bounds_width, |
+ GLint bounds_height, |
+ GLfloat uv_x, |
+ GLfloat uv_y, |
+ GLfloat uv_width, |
+ GLfloat uv_height) { |
+ gles2::cmds::ScheduleOverlayPlaneCHROMIUM* c = |
+ GetCmdSpace<gles2::cmds::ScheduleOverlayPlaneCHROMIUM>(); |
+ if (c) { |
+ c->Init(plane_z_order, |
+ plane_transform, |
+ overlay_texture_id, |
+ bounds_x, |
+ bounds_y, |
+ bounds_width, |
+ bounds_height, |
+ uv_x, |
+ uv_y, |
+ uv_width, |
+ uv_height); |
+ } |
+} |
+ |
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ |