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

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

Issue 2852953003: Use real colorspace for DirectComposition overlays.
Patch Set: rebase Created 3 years, 7 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
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 77139dbac40232128560c392a55bad7795eb0094..0dd7d03631ac9dc1f738aa0ff7582906672bf4d5 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1530,10 +1530,12 @@ GLES2ScheduleDCLayerCHROMIUM(GLsizei num_textures,
GLuint background_color,
GLuint edge_aa_mask,
const GLfloat* bounds_rect,
- GLuint filter) {
+ GLuint filter,
+ GLsizei color_space_size,
+ const GLvoid* color_space) {
gles2::GetGLContext()->ScheduleDCLayerCHROMIUM(
num_textures, contents_texture_ids, contents_rect, background_color,
- edge_aa_mask, bounds_rect, filter);
+ edge_aa_mask, bounds_rect, filter, color_space_size, color_space);
}
void GL_APIENTRY GLES2MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
gles2::GetGLContext()->MatrixLoadfCHROMIUM(matrixMode, m);

Powered by Google App Engine
This is Rietveld 408576698