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

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

Issue 1126173003: Fix Get* calls in GPU Command buffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tex
Patch Set: Created 5 years, 7 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 #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 21 matching lines...) Expand all
32 max_draw_buffers(0), 32 max_draw_buffers(0),
33 max_element_index(0), 33 max_element_index(0),
34 max_elements_indices(0), 34 max_elements_indices(0),
35 max_elements_vertices(0), 35 max_elements_vertices(0),
36 max_fragment_input_components(0), 36 max_fragment_input_components(0),
37 max_fragment_uniform_blocks(0), 37 max_fragment_uniform_blocks(0),
38 max_fragment_uniform_components(0), 38 max_fragment_uniform_components(0),
39 max_program_texel_offset(0), 39 max_program_texel_offset(0),
40 max_samples(0), 40 max_samples(0),
41 max_server_wait_timeout(0), 41 max_server_wait_timeout(0),
42 max_texture_lod_bias(0.f),
42 max_transform_feedback_interleaved_components(0), 43 max_transform_feedback_interleaved_components(0),
43 max_transform_feedback_separate_attribs(0), 44 max_transform_feedback_separate_attribs(0),
44 max_transform_feedback_separate_components(0), 45 max_transform_feedback_separate_components(0),
45 max_uniform_block_size(0), 46 max_uniform_block_size(0),
46 max_uniform_buffer_bindings(0), 47 max_uniform_buffer_bindings(0),
47 max_varying_components(0), 48 max_varying_components(0),
48 max_vertex_output_components(0), 49 max_vertex_output_components(0),
49 max_vertex_uniform_blocks(0), 50 max_vertex_uniform_blocks(0),
50 max_vertex_uniform_components(0), 51 max_vertex_uniform_components(0),
51 min_program_texel_offset(0), 52 min_program_texel_offset(0),
(...skipping 17 matching lines...) Expand all
69 image(false), 70 image(false),
70 future_sync_points(false), 71 future_sync_points(false),
71 blend_equation_advanced(false), 72 blend_equation_advanced(false),
72 blend_equation_advanced_coherent(false), 73 blend_equation_advanced_coherent(false),
73 texture_rg(false), 74 texture_rg(false),
74 major_version(2), 75 major_version(2),
75 minor_version(0) { 76 minor_version(0) {
76 } 77 }
77 78
78 } // namespace gpu 79 } // namespace gpu
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698