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

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

Issue 2242453002: Avoid planar YUV resources when one component EGL images are not supported (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: modify comment to explain the use of RGBA_8888 to trigger a driver workaround Created 4 years, 4 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 bool texture_rg; 137 bool texture_rg;
138 bool texture_half_float_linear; 138 bool texture_half_float_linear;
139 bool image_ycbcr_422; 139 bool image_ycbcr_422;
140 bool image_ycbcr_420v; 140 bool image_ycbcr_420v;
141 bool render_buffer_format_bgra8888; 141 bool render_buffer_format_bgra8888;
142 bool occlusion_query_boolean; 142 bool occlusion_query_boolean;
143 bool timer_queries; 143 bool timer_queries;
144 bool surfaceless; 144 bool surfaceless;
145 bool flips_vertically; 145 bool flips_vertically;
146 bool msaa_is_slow; 146 bool msaa_is_slow;
147 bool force_software_yuv_conversion;
147 bool disable_multisampling_color_mask_usage; 148 bool disable_multisampling_color_mask_usage;
148 bool disable_webgl_rgb_multisampling_usage; 149 bool disable_webgl_rgb_multisampling_usage;
149 150
150 // When this parameter is true, a CHROMIUM image created with RGB format will 151 // When this parameter is true, a CHROMIUM image created with RGB format will
151 // actually have RGBA format. The client is responsible for handling most of 152 // actually have RGBA format. The client is responsible for handling most of
152 // the complexities associated with this. See 153 // the complexities associated with this. See
153 // gpu/GLES2/extensions/CHROMIUM/CHROMIUM_gpu_memory_buffer_image.txt for more 154 // gpu/GLES2/extensions/CHROMIUM/CHROMIUM_gpu_memory_buffer_image.txt for more
154 // details. 155 // details.
155 bool chromium_image_rgb_emulation; 156 bool chromium_image_rgb_emulation;
156 157
157 // When true, RGB framebuffer formats are unsupported. Emulate with RGBA to 158 // When true, RGB framebuffer formats are unsupported. Emulate with RGBA to
158 // work around this. See https://crbug.com/449150 for an example. 159 // work around this. See https://crbug.com/449150 for an example.
159 bool emulate_rgb_buffer_with_rgba; 160 bool emulate_rgb_buffer_with_rgba;
160 161
161 int major_version; 162 int major_version;
162 int minor_version; 163 int minor_version;
163 }; 164 };
164 165
165 } // namespace gpu 166 } // namespace gpu
166 167
167 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 168 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698