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

Side by Side Diff: gpu/command_buffer/service/feature_info.cc

Issue 2021603002: gpu: Add a new extension CHROMIUM_deschedule. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/service/feature_info.h" 5 #include "gpu/command_buffer/service/feature_info.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <set> 9 #include <set>
10 #include <vector> 10 #include <vector>
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 315
316 gl_version_info_.reset( 316 gl_version_info_.reset(
317 new gl::GLVersionInfo(version_str, renderer_str, extensions.GetImpl())); 317 new gl::GLVersionInfo(version_str, renderer_str, extensions.GetImpl()));
318 318
319 AddExtensionString("GL_ANGLE_translated_shader_source"); 319 AddExtensionString("GL_ANGLE_translated_shader_source");
320 AddExtensionString("GL_CHROMIUM_async_pixel_transfers"); 320 AddExtensionString("GL_CHROMIUM_async_pixel_transfers");
321 AddExtensionString("GL_CHROMIUM_bind_uniform_location"); 321 AddExtensionString("GL_CHROMIUM_bind_uniform_location");
322 AddExtensionString("GL_CHROMIUM_command_buffer_query"); 322 AddExtensionString("GL_CHROMIUM_command_buffer_query");
323 AddExtensionString("GL_CHROMIUM_command_buffer_latency_query"); 323 AddExtensionString("GL_CHROMIUM_command_buffer_latency_query");
324 AddExtensionString("GL_CHROMIUM_copy_texture"); 324 AddExtensionString("GL_CHROMIUM_copy_texture");
325 AddExtensionString("GL_CHROMIUM_deschedule");
325 AddExtensionString("GL_CHROMIUM_get_error_query"); 326 AddExtensionString("GL_CHROMIUM_get_error_query");
326 AddExtensionString("GL_CHROMIUM_lose_context"); 327 AddExtensionString("GL_CHROMIUM_lose_context");
327 AddExtensionString("GL_CHROMIUM_pixel_transfer_buffer_object"); 328 AddExtensionString("GL_CHROMIUM_pixel_transfer_buffer_object");
328 AddExtensionString("GL_CHROMIUM_rate_limit_offscreen_context"); 329 AddExtensionString("GL_CHROMIUM_rate_limit_offscreen_context");
329 AddExtensionString("GL_CHROMIUM_resize"); 330 AddExtensionString("GL_CHROMIUM_resize");
330 AddExtensionString("GL_CHROMIUM_resource_safe"); 331 AddExtensionString("GL_CHROMIUM_resource_safe");
331 AddExtensionString("GL_CHROMIUM_strict_attribs"); 332 AddExtensionString("GL_CHROMIUM_strict_attribs");
332 AddExtensionString("GL_CHROMIUM_texture_mailbox"); 333 AddExtensionString("GL_CHROMIUM_texture_mailbox");
333 AddExtensionString("GL_CHROMIUM_trace_marker"); 334 AddExtensionString("GL_CHROMIUM_trace_marker");
334 AddExtensionString("GL_EXT_debug_marker"); 335 AddExtensionString("GL_EXT_debug_marker");
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 if (pos == std::string::npos) { 1395 if (pos == std::string::npos) {
1395 extensions_ += (extensions_.empty() ? "" : " ") + str; 1396 extensions_ += (extensions_.empty() ? "" : " ") + str;
1396 } 1397 }
1397 } 1398 }
1398 1399
1399 FeatureInfo::~FeatureInfo() { 1400 FeatureInfo::~FeatureInfo() {
1400 } 1401 }
1401 1402
1402 } // namespace gles2 1403 } // namespace gles2
1403 } // namespace gpu 1404 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_ids_autogen.h ('k') | gpu/command_buffer/service/gles2_cmd_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698