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

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

Issue 1887533002: Add plumbing to command buffer for CALayer min and mag filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_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 f8b3dcba87741261c1b13f3df23894df0bc6834e..724f5281ee848f943c360826be1d7ee6b9a8fa91 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -2831,12 +2831,13 @@ void ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
GLboolean is_clipped,
GLint sorting_context_id,
GLuint shm_id,
- GLuint shm_offset) {
+ GLuint shm_offset,
+ GLuint filter) {
gles2::cmds::ScheduleCALayerCHROMIUM* c =
GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>();
if (c) {
c->Init(contents_texture_id, opacity, background_color, edge_aa_mask,
- is_clipped, sorting_context_id, shm_id, shm_offset);
+ is_clipped, sorting_context_id, shm_id, shm_offset, filter);
}
}

Powered by Google App Engine
This is Rietveld 408576698