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

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

Issue 1159833002: content: Partial copy workaround for devices with known upload performance problems. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sort 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
« 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 11 matching lines...) Expand all
22 max_vertex_uniform_vectors(0), 22 max_vertex_uniform_vectors(0),
23 num_compressed_texture_formats(0), 23 num_compressed_texture_formats(0),
24 num_shader_binary_formats(0), 24 num_shader_binary_formats(0),
25 bind_generates_resource_chromium(0), 25 bind_generates_resource_chromium(0),
26 max_3d_texture_size(0), 26 max_3d_texture_size(0),
27 max_array_texture_layers(0), 27 max_array_texture_layers(0),
28 max_color_attachments(0), 28 max_color_attachments(0),
29 max_combined_fragment_uniform_components(0), 29 max_combined_fragment_uniform_components(0),
30 max_combined_uniform_blocks(0), 30 max_combined_uniform_blocks(0),
31 max_combined_vertex_uniform_components(0), 31 max_combined_vertex_uniform_components(0),
32 max_copy_texture_chromium_size(0),
32 max_draw_buffers(0), 33 max_draw_buffers(0),
33 max_element_index(0), 34 max_element_index(0),
34 max_elements_indices(0), 35 max_elements_indices(0),
35 max_elements_vertices(0), 36 max_elements_vertices(0),
36 max_fragment_input_components(0), 37 max_fragment_input_components(0),
37 max_fragment_uniform_blocks(0), 38 max_fragment_uniform_blocks(0),
38 max_fragment_uniform_components(0), 39 max_fragment_uniform_components(0),
39 max_program_texel_offset(0), 40 max_program_texel_offset(0),
40 max_samples(0), 41 max_samples(0),
41 max_server_wait_timeout(0), 42 max_server_wait_timeout(0),
(...skipping 28 matching lines...) Expand all
70 image(false), 71 image(false),
71 future_sync_points(false), 72 future_sync_points(false),
72 blend_equation_advanced(false), 73 blend_equation_advanced(false),
73 blend_equation_advanced_coherent(false), 74 blend_equation_advanced_coherent(false),
74 texture_rg(false), 75 texture_rg(false),
75 major_version(2), 76 major_version(2),
76 minor_version(0) { 77 minor_version(0) {
77 } 78 }
78 79
79 } // namespace gpu 80 } // 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