| OLD | NEW |
| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 bool texture_rectangle; | 84 bool texture_rectangle; |
| 85 bool iosurface; | 85 bool iosurface; |
| 86 bool texture_usage; | 86 bool texture_usage; |
| 87 bool texture_storage; | 87 bool texture_storage; |
| 88 bool discard_framebuffer; | 88 bool discard_framebuffer; |
| 89 bool sync_query; | 89 bool sync_query; |
| 90 bool image; | 90 bool image; |
| 91 bool future_sync_points; | 91 bool future_sync_points; |
| 92 bool blend_equation_advanced; | 92 bool blend_equation_advanced; |
| 93 bool blend_equation_advanced_coherent; | 93 bool blend_equation_advanced_coherent; |
| 94 bool texture_rg; |
| 94 }; | 95 }; |
| 95 | 96 |
| 96 } // namespace gpu | 97 } // namespace gpu |
| 97 | 98 |
| 98 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ | 99 #endif // GPU_COMMAND_BUFFER_COMMON_CAPABILITIES_H_ |
| OLD | NEW |