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

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

Issue 1263043006: Implement the texture uploading of ASTC compression for WebGL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add braces and cleanup. Created 5 years, 3 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
« no previous file with comments | « gpu/command_buffer/common/capabilities.h ('k') | gpu/command_buffer/service/feature_info.h » ('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 #include "gpu/command_buffer/common/capabilities.h" 5 #include "gpu/command_buffer/common/capabilities.h"
6 6
7 namespace gpu { 7 namespace gpu {
8 8
9 Capabilities::PerStagePrecisions::PerStagePrecisions() { 9 Capabilities::PerStagePrecisions::PerStagePrecisions() {
10 } 10 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 max_varying_components(0), 49 max_varying_components(0),
50 max_vertex_output_components(0), 50 max_vertex_output_components(0),
51 max_vertex_uniform_blocks(0), 51 max_vertex_uniform_blocks(0),
52 max_vertex_uniform_components(0), 52 max_vertex_uniform_components(0),
53 min_program_texel_offset(0), 53 min_program_texel_offset(0),
54 num_extensions(0), 54 num_extensions(0),
55 num_program_binary_formats(0), 55 num_program_binary_formats(0),
56 uniform_buffer_offset_alignment(1), 56 uniform_buffer_offset_alignment(1),
57 post_sub_buffer(false), 57 post_sub_buffer(false),
58 egl_image_external(false), 58 egl_image_external(false),
59 texture_format_astc(false),
59 texture_format_atc(false), 60 texture_format_atc(false),
60 texture_format_bgra8888(false), 61 texture_format_bgra8888(false),
61 texture_format_dxt1(false), 62 texture_format_dxt1(false),
62 texture_format_dxt5(false), 63 texture_format_dxt5(false),
63 texture_format_etc1(false), 64 texture_format_etc1(false),
64 texture_format_etc1_npot(false), 65 texture_format_etc1_npot(false),
65 texture_rectangle(false), 66 texture_rectangle(false),
66 iosurface(false), 67 iosurface(false),
67 texture_usage(false), 68 texture_usage(false),
68 texture_storage(false), 69 texture_storage(false),
69 discard_framebuffer(false), 70 discard_framebuffer(false),
70 sync_query(false), 71 sync_query(false),
71 image(false), 72 image(false),
72 future_sync_points(false), 73 future_sync_points(false),
73 blend_equation_advanced(false), 74 blend_equation_advanced(false),
74 blend_equation_advanced_coherent(false), 75 blend_equation_advanced_coherent(false),
75 texture_rg(false), 76 texture_rg(false),
76 render_buffer_format_bgra8888(false), 77 render_buffer_format_bgra8888(false),
77 occlusion_query_boolean(false), 78 occlusion_query_boolean(false),
78 surfaceless(false), 79 surfaceless(false),
79 major_version(2), 80 major_version(2),
80 minor_version(0) { 81 minor_version(0) {
81 } 82 }
82 83
83 } // namespace gpu 84 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/capabilities.h ('k') | gpu/command_buffer/service/feature_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698