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

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

Issue 1174733003: cc, gpu: Use RGBA when using msaa on systems that don't support BGRA (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove test code Created 5 years, 6 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 bool iosurface; 124 bool iosurface;
125 bool texture_usage; 125 bool texture_usage;
126 bool texture_storage; 126 bool texture_storage;
127 bool discard_framebuffer; 127 bool discard_framebuffer;
128 bool sync_query; 128 bool sync_query;
129 bool image; 129 bool image;
130 bool future_sync_points; 130 bool future_sync_points;
131 bool blend_equation_advanced; 131 bool blend_equation_advanced;
132 bool blend_equation_advanced_coherent; 132 bool blend_equation_advanced_coherent;
133 bool texture_rg; 133 bool texture_rg;
134 bool render_buffer_format_bgra8888;
134 135
135 int major_version; 136 int major_version;
136 int minor_version; 137 int minor_version;
137 }; 138 };
138 139
139 } // namespace gpu 140 } // namespace gpu
140 141
141 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 142 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698