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

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

Issue 1477593002: gpu: Initial implementation of CommitOverlayPlanes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add-cop-command
Patch Set: Remove NativeViewGLSurfaceEGL changes Created 5 years 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 max_uniform_buffer_bindings(0), 48 max_uniform_buffer_bindings(0),
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 commit_overlay_planes(false),
58 egl_image_external(false), 59 egl_image_external(false),
59 texture_format_astc(false), 60 texture_format_astc(false),
60 texture_format_atc(false), 61 texture_format_atc(false),
61 texture_format_bgra8888(false), 62 texture_format_bgra8888(false),
62 texture_format_dxt1(false), 63 texture_format_dxt1(false),
63 texture_format_dxt5(false), 64 texture_format_dxt5(false),
64 texture_format_etc1(false), 65 texture_format_etc1(false),
65 texture_format_etc1_npot(false), 66 texture_format_etc1_npot(false),
66 texture_rectangle(false), 67 texture_rectangle(false),
67 iosurface(false), 68 iosurface(false),
68 texture_usage(false), 69 texture_usage(false),
69 texture_storage(false), 70 texture_storage(false),
70 discard_framebuffer(false), 71 discard_framebuffer(false),
71 sync_query(false), 72 sync_query(false),
72 image(false), 73 image(false),
73 future_sync_points(false), 74 future_sync_points(false),
74 blend_equation_advanced(false), 75 blend_equation_advanced(false),
75 blend_equation_advanced_coherent(false), 76 blend_equation_advanced_coherent(false),
76 texture_rg(false), 77 texture_rg(false),
77 image_ycbcr_422(false), 78 image_ycbcr_422(false),
78 render_buffer_format_bgra8888(false), 79 render_buffer_format_bgra8888(false),
79 occlusion_query_boolean(false), 80 occlusion_query_boolean(false),
80 timer_queries(false), 81 timer_queries(false),
81 surfaceless(false), 82 surfaceless(false),
82 major_version(2), 83 major_version(2),
83 minor_version(0) {} 84 minor_version(0) {}
84 85
85 } // namespace gpu 86 } // 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