Index: gpu/GLES2/gl2extchromium.h |
diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h |
index 0eb89ce84b294d649cd77e4c8e0b7d4f581b6ab7..db4f12ff90755fe63dceeeec99a2c468092a7d9d 100644 |
--- a/gpu/GLES2/gl2extchromium.h |
+++ b/gpu/GLES2/gl2extchromium.h |
@@ -636,6 +636,62 @@ typedef void (GL_APIENTRYP PFNGLWAITSYNCPOINTCHROMIUMPROC) (GLuint sync_point); |
#endif |
#endif /* GL_CHROMIUM_color_buffer_float_rgb */ |
+/* GL_CHROMIUM_schedule_overlay_plane */ |
+#ifndef GL_CHROMIUM_schedule_overlay_plane |
+#define GL_CHROMIUM_schedule_overlay_plane 1 |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_NONE_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_NONE_CHROMIUM 0x9245 |
+#endif |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_FLIP_HORIZONTAL_CHROMIUM 0x9246 |
+#endif |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_FLIP_VERTICAL_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_FLIP_VERTICAL_CHROMIUM 0x9247 |
+#endif |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_ROTATE_90_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_ROTATE_90_CHROMIUM 0x9248 |
+#endif |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_ROTATE_180_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_ROTATE_180_CHROMIUM 0x9249 |
+#endif |
+ |
+#ifndef GL_OVERLAY_TRANSFORM_ROTATE_270_CHROMIUM |
+#define GL_OVERLAY_TRANSFORM_ROTATE_270_CHROMIUM 0x924A |
+#endif |
+ |
+#ifdef GL_GLEXT_PROTOTYPES |
+GL_APICALL void GL_APIENTRY |
+ glScheduleOverlayPlaneCHROMIUM(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); |
+#endif |
+typedef void(GL_APIENTRYP PFNGLSCHEDULEOVERLAYPLANECHROMIUMPROC)( |
+ 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); |
+#endif /* GL_CHROMIUM_schedule_overlay_plane */ |
+ |
#ifdef __cplusplus |
} |
#endif |