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

Side by Side Diff: gpu/command_buffer/common/capabilities.h

Issue 2673473002: Rename SwapBuffersWithDamage to SwapBuffersWithBounds (Closed)
Patch Set: Fix Cast compile error + autogen test logic Created 3 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 5 #ifndef GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
6 #define GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 6 #define GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "gpu/gpu_export.h" 10 #include "gpu/gpu_export.h"
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 int max_varying_components; 111 int max_varying_components;
112 int max_vertex_output_components; 112 int max_vertex_output_components;
113 int max_vertex_uniform_blocks; 113 int max_vertex_uniform_blocks;
114 int max_vertex_uniform_components; 114 int max_vertex_uniform_components;
115 int min_program_texel_offset; 115 int min_program_texel_offset;
116 int num_extensions; 116 int num_extensions;
117 int num_program_binary_formats; 117 int num_program_binary_formats;
118 int uniform_buffer_offset_alignment; 118 int uniform_buffer_offset_alignment;
119 119
120 bool post_sub_buffer; 120 bool post_sub_buffer;
121 bool swap_buffers_with_damage; 121 bool swap_buffers_with_bounds;
122 bool commit_overlay_planes; 122 bool commit_overlay_planes;
123 bool egl_image_external; 123 bool egl_image_external;
124 bool texture_format_astc; 124 bool texture_format_astc;
125 bool texture_format_atc; 125 bool texture_format_atc;
126 bool texture_format_bgra8888; 126 bool texture_format_bgra8888;
127 bool texture_format_dxt1; 127 bool texture_format_dxt1;
128 bool texture_format_dxt5; 128 bool texture_format_dxt5;
129 bool texture_format_etc1; 129 bool texture_format_etc1;
130 bool texture_format_etc1_npot; 130 bool texture_format_etc1_npot;
131 bool texture_rectangle; 131 bool texture_rectangle;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 // work around this. See https://crbug.com/449150 for an example. 163 // work around this. See https://crbug.com/449150 for an example.
164 bool emulate_rgb_buffer_with_rgba; 164 bool emulate_rgb_buffer_with_rgba;
165 165
166 int major_version; 166 int major_version;
167 int minor_version; 167 int minor_version;
168 }; 168 };
169 169
170 } // namespace gpu 170 } // namespace gpu
171 171
172 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 172 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698