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

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

Issue 885013002: gpu: Add TransformFeedback & Uniform Buffer related consts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed early returns Created 5 years, 10 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 }
11 11
12 Capabilities::Capabilities() 12 Capabilities::Capabilities()
13 : max_combined_texture_image_units(0), 13 : max_combined_texture_image_units(0),
14 max_cube_map_texture_size(0), 14 max_cube_map_texture_size(0),
15 max_fragment_uniform_vectors(0), 15 max_fragment_uniform_vectors(0),
16 max_renderbuffer_size(0), 16 max_renderbuffer_size(0),
17 max_texture_image_units(0), 17 max_texture_image_units(0),
18 max_texture_size(0), 18 max_texture_size(0),
19 max_varying_vectors(0), 19 max_varying_vectors(0),
20 max_vertex_attribs(0), 20 max_vertex_attribs(0),
21 max_vertex_texture_image_units(0), 21 max_vertex_texture_image_units(0),
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_transform_feedback_separate_attribs(0),
27 max_uniform_buffer_bindings(0),
28 uniform_buffer_offset_alignment(1),
26 post_sub_buffer(false), 29 post_sub_buffer(false),
27 egl_image_external(false), 30 egl_image_external(false),
28 texture_format_bgra8888(false), 31 texture_format_bgra8888(false),
29 texture_format_etc1(false), 32 texture_format_etc1(false),
30 texture_format_etc1_npot(false), 33 texture_format_etc1_npot(false),
31 texture_rectangle(false), 34 texture_rectangle(false),
32 iosurface(false), 35 iosurface(false),
33 texture_usage(false), 36 texture_usage(false),
34 texture_storage(false), 37 texture_storage(false),
35 discard_framebuffer(false), 38 discard_framebuffer(false),
36 sync_query(false), 39 sync_query(false),
37 image(false), 40 image(false),
38 future_sync_points(false), 41 future_sync_points(false),
39 blend_equation_advanced(false), 42 blend_equation_advanced(false),
40 blend_equation_advanced_coherent(false), 43 blend_equation_advanced_coherent(false),
41 texture_rg(false) { 44 texture_rg(false) {
42 } 45 }
43 46
44 } // namespace gpu 47 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/capabilities.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698