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

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

Issue 793693003: Tile Compression (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « gpu/command_buffer/cmd_buffer_functions.txt ('k') | gpu/command_buffer/common/capabilities.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "gpu/gpu_export.h" 8 #include "gpu/gpu_export.h"
9 9
10 // From gl2.h. We want to avoid including gl headers because client-side and 10 // From gl2.h. We want to avoid including gl headers because client-side and
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 int max_varying_vectors; 71 int max_varying_vectors;
72 int max_vertex_attribs; 72 int max_vertex_attribs;
73 int max_vertex_texture_image_units; 73 int max_vertex_texture_image_units;
74 int max_vertex_uniform_vectors; 74 int max_vertex_uniform_vectors;
75 int num_compressed_texture_formats; 75 int num_compressed_texture_formats;
76 int num_shader_binary_formats; 76 int num_shader_binary_formats;
77 int bind_generates_resource_chromium; 77 int bind_generates_resource_chromium;
78 78
79 bool post_sub_buffer; 79 bool post_sub_buffer;
80 bool egl_image_external; 80 bool egl_image_external;
81 bool texture_format_atc;
81 bool texture_format_bgra8888; 82 bool texture_format_bgra8888;
83 bool texture_format_dxt;
82 bool texture_format_etc1; 84 bool texture_format_etc1;
83 bool texture_format_etc1_npot; 85 bool texture_format_etc1_npot;
84 bool texture_rectangle; 86 bool texture_rectangle;
85 bool iosurface; 87 bool iosurface;
86 bool texture_usage; 88 bool texture_usage;
87 bool texture_storage; 89 bool texture_storage;
88 bool discard_framebuffer; 90 bool discard_framebuffer;
89 bool sync_query; 91 bool sync_query;
90 bool image; 92 bool image;
91 bool future_sync_points; 93 bool future_sync_points;
92 bool blend_equation_advanced; 94 bool blend_equation_advanced;
93 bool blend_equation_advanced_coherent; 95 bool blend_equation_advanced_coherent;
94 bool texture_rg; 96 bool texture_rg;
95 }; 97 };
96 98
97 } // namespace gpu 99 } // namespace gpu
98 100
99 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ 101 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/cmd_buffer_functions.txt ('k') | gpu/command_buffer/common/capabilities.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698