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

Side by Side 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: Fix parameter ordering. 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is auto-generated from 5 // This file is auto-generated from
6 // gpu/command_buffer/build_gles2_cmd_buffer.py 6 // gpu/command_buffer/build_gles2_cmd_buffer.py
7 // It's formatted by clang-format using chromium coding style: 7 // It's formatted by clang-format using chromium coding style:
8 // clang-format -i -style=chromium filename 8 // clang-format -i -style=chromium filename
9 // DO NOT EDIT! 9 // DO NOT EDIT!
10 10
(...skipping 2812 matching lines...) Expand 10 before | Expand all | Expand 10 after
2823 uv_height); 2823 uv_height);
2824 } 2824 }
2825 } 2825 }
2826 2826
2827 void ScheduleCALayerCHROMIUM(GLuint contents_texture_id, 2827 void ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
2828 GLfloat opacity, 2828 GLfloat opacity,
2829 GLuint background_color, 2829 GLuint background_color,
2830 GLuint edge_aa_mask, 2830 GLuint edge_aa_mask,
2831 GLboolean is_clipped, 2831 GLboolean is_clipped,
2832 GLint sorting_context_id, 2832 GLint sorting_context_id,
2833 GLuint filter,
2833 GLuint shm_id, 2834 GLuint shm_id,
2834 GLuint shm_offset) { 2835 GLuint shm_offset) {
2835 gles2::cmds::ScheduleCALayerCHROMIUM* c = 2836 gles2::cmds::ScheduleCALayerCHROMIUM* c =
2836 GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>(); 2837 GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>();
2837 if (c) { 2838 if (c) {
2838 c->Init(contents_texture_id, opacity, background_color, edge_aa_mask, 2839 c->Init(contents_texture_id, opacity, background_color, edge_aa_mask,
2839 is_clipped, sorting_context_id, shm_id, shm_offset); 2840 is_clipped, sorting_context_id, filter, shm_id, shm_offset);
2840 } 2841 }
2841 } 2842 }
2842 2843
2843 void CommitOverlayPlanesCHROMIUM() { 2844 void CommitOverlayPlanesCHROMIUM() {
2844 gles2::cmds::CommitOverlayPlanesCHROMIUM* c = 2845 gles2::cmds::CommitOverlayPlanesCHROMIUM* c =
2845 GetCmdSpace<gles2::cmds::CommitOverlayPlanesCHROMIUM>(); 2846 GetCmdSpace<gles2::cmds::CommitOverlayPlanesCHROMIUM>();
2846 if (c) { 2847 if (c) {
2847 c->Init(); 2848 c->Init();
2848 } 2849 }
2849 } 2850 }
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
3205 gles2::cmds::UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate* c = 3206 gles2::cmds::UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate* c =
3206 GetImmediateCmdSpaceTotalSize< 3207 GetImmediateCmdSpaceTotalSize<
3207 gles2::cmds::UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate>( 3208 gles2::cmds::UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate>(
3208 size); 3209 size);
3209 if (c) { 3210 if (c) {
3210 c->Init(location, transpose, default_value); 3211 c->Init(location, transpose, default_value);
3211 } 3212 }
3212 } 3213 }
3213 3214
3214 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_ 3215 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_c_lib_autogen.h ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698