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

Side by Side Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 1534623002: Mac CoreAnimation: Add more CALayer parameters (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows compile Created 5 years 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 2833 matching lines...) Expand 10 before | Expand all | Expand 10 after
2844 if (c) { 2844 if (c) {
2845 c->Init(plane_z_order, plane_transform, overlay_texture_id, bounds_x, 2845 c->Init(plane_z_order, plane_transform, overlay_texture_id, bounds_x,
2846 bounds_y, bounds_width, bounds_height, uv_x, uv_y, uv_width, 2846 bounds_y, bounds_width, bounds_height, uv_x, uv_y, uv_width,
2847 uv_height); 2847 uv_height);
2848 } 2848 }
2849 } 2849 }
2850 2850
2851 void ScheduleCALayerCHROMIUM(GLuint contents_texture_id, 2851 void ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
2852 GLfloat opacity, 2852 GLfloat opacity,
2853 GLuint background_color, 2853 GLuint background_color,
2854 GLuint edge_aa_mask,
2855 GLboolean is_clipped,
2856 GLint sorting_context_id,
2854 GLuint shm_id, 2857 GLuint shm_id,
2855 GLuint shm_offset) { 2858 GLuint shm_offset) {
2856 gles2::cmds::ScheduleCALayerCHROMIUM* c = 2859 gles2::cmds::ScheduleCALayerCHROMIUM* c =
2857 GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>(); 2860 GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>();
2858 if (c) { 2861 if (c) {
2859 c->Init(contents_texture_id, opacity, background_color, shm_id, shm_offset); 2862 c->Init(contents_texture_id, opacity, background_color, edge_aa_mask,
2863 is_clipped, sorting_context_id, shm_id, shm_offset);
2860 } 2864 }
2861 } 2865 }
2862 2866
2863 void CommitOverlayPlanesCHROMIUM() { 2867 void CommitOverlayPlanesCHROMIUM() {
2864 gles2::cmds::CommitOverlayPlanesCHROMIUM* c = 2868 gles2::cmds::CommitOverlayPlanesCHROMIUM* c =
2865 GetCmdSpace<gles2::cmds::CommitOverlayPlanesCHROMIUM>(); 2869 GetCmdSpace<gles2::cmds::CommitOverlayPlanesCHROMIUM>();
2866 if (c) { 2870 if (c) {
2867 c->Init(); 2871 c->Init();
2868 } 2872 }
2869 } 2873 }
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
3202 uint32_t index_shm_id, 3206 uint32_t index_shm_id,
3203 uint32_t index_shm_offset) { 3207 uint32_t index_shm_offset) {
3204 gles2::cmds::GetFragDataIndexEXT* c = 3208 gles2::cmds::GetFragDataIndexEXT* c =
3205 GetCmdSpace<gles2::cmds::GetFragDataIndexEXT>(); 3209 GetCmdSpace<gles2::cmds::GetFragDataIndexEXT>();
3206 if (c) { 3210 if (c) {
3207 c->Init(program, name_bucket_id, index_shm_id, index_shm_offset); 3211 c->Init(program, name_bucket_id, index_shm_id, index_shm_offset);
3208 } 3212 }
3209 } 3213 }
3210 3214
3211 #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