Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

Issue 2736643004: Add DCLayerOverlayProcessor and supporting DCLayer structures. (Closed)
Patch Set: split CALayerOverlay into DCLayerOverlay Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
index 12d4643efe77007255403109dcf8432f0b8be35e..d8b3a2e517c5c8a9749338826e3689cf202ccdc1 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1507,6 +1507,25 @@ void GL_APIENTRY GLES2FlushDriverCachesCHROMIUM() {
GLuint GL_APIENTRY GLES2GetLastFlushIdCHROMIUM() {
return gles2::GetGLContext()->GetLastFlushIdCHROMIUM();
}
+void GL_APIENTRY
+GLES2ScheduleDCLayerSharedStateCHROMIUM(GLfloat opacity,
+ GLboolean is_clipped,
+ const GLfloat* clip_rect,
+ GLint z_order,
+ const GLfloat* transform) {
+ gles2::GetGLContext()->ScheduleDCLayerSharedStateCHROMIUM(
+ opacity, is_clipped, clip_rect, z_order, transform);
+}
+void GL_APIENTRY GLES2ScheduleDCLayerCHROMIUM(GLuint contents_texture_id,
+ const GLfloat* contents_rect,
+ GLuint background_color,
+ GLuint edge_aa_mask,
+ const GLfloat* bounds_rect,
+ GLuint filter) {
+ gles2::GetGLContext()->ScheduleDCLayerCHROMIUM(
+ contents_texture_id, contents_rect, background_color, edge_aa_mask,
+ bounds_rect, filter);
+}
void GL_APIENTRY GLES2MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
gles2::GetGLContext()->MatrixLoadfCHROMIUM(matrixMode, m);
}
@@ -2880,6 +2899,15 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glGetLastFlushIdCHROMIUM),
},
{
+ "glScheduleDCLayerSharedStateCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glScheduleDCLayerSharedStateCHROMIUM),
+ },
+ {
+ "glScheduleDCLayerCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(glScheduleDCLayerCHROMIUM),
+ },
+ {
"glMatrixLoadfCHROMIUM",
reinterpret_cast<GLES2FunctionPointer>(glMatrixLoadfCHROMIUM),
},
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698