| OLD | NEW |
| 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 <set> | 7 #include <set> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 lstr.find("ati") != std::string::npos; | 169 lstr.find("ati") != std::string::npos; |
| 170 } | 170 } |
| 171 } | 171 } |
| 172 | 172 |
| 173 feature_flags_.disable_workarounds = | 173 feature_flags_.disable_workarounds = |
| 174 CommandLine::ForCurrentProcess()->HasSwitch( | 174 CommandLine::ForCurrentProcess()->HasSwitch( |
| 175 switches::kDisableGpuDriverBugWorkarounds); | 175 switches::kDisableGpuDriverBugWorkarounds); |
| 176 | 176 |
| 177 bool npot_ok = false; | 177 bool npot_ok = false; |
| 178 | 178 |
| 179 AddExtensionString("GL_ANGLE_translated_shader_source"); |
| 179 AddExtensionString("GL_CHROMIUM_bind_uniform_location"); | 180 AddExtensionString("GL_CHROMIUM_bind_uniform_location"); |
| 180 AddExtensionString("GL_CHROMIUM_resource_safe"); | |
| 181 AddExtensionString("GL_CHROMIUM_resize"); | |
| 182 AddExtensionString("GL_CHROMIUM_strict_attribs"); | |
| 183 AddExtensionString("GL_CHROMIUM_rate_limit_offscreen_context"); | |
| 184 AddExtensionString("GL_CHROMIUM_set_visibility"); | |
| 185 AddExtensionString("GL_CHROMIUM_discard_framebuffer"); | |
| 186 AddExtensionString("GL_CHROMIUM_command_buffer_query"); | 181 AddExtensionString("GL_CHROMIUM_command_buffer_query"); |
| 187 AddExtensionString("GL_CHROMIUM_copy_texture"); | 182 AddExtensionString("GL_CHROMIUM_copy_texture"); |
| 183 AddExtensionString("GL_CHROMIUM_discard_framebuffer"); |
| 184 AddExtensionString("GL_CHROMIUM_get_error_query"); |
| 185 AddExtensionString("GL_CHROMIUM_rate_limit_offscreen_context"); |
| 186 AddExtensionString("GL_CHROMIUM_resize"); |
| 187 AddExtensionString("GL_CHROMIUM_resource_safe"); |
| 188 AddExtensionString("GL_CHROMIUM_set_visibility"); |
| 189 AddExtensionString("GL_CHROMIUM_strict_attribs"); |
| 188 AddExtensionString("GL_CHROMIUM_texture_mailbox"); | 190 AddExtensionString("GL_CHROMIUM_texture_mailbox"); |
| 189 AddExtensionString("GL_ANGLE_translated_shader_source"); | |
| 190 | 191 |
| 191 if (!disallowed_features_.gpu_memory_manager) | 192 if (!disallowed_features_.gpu_memory_manager) |
| 192 AddExtensionString("GL_CHROMIUM_gpu_memory_manager"); | 193 AddExtensionString("GL_CHROMIUM_gpu_memory_manager"); |
| 193 | 194 |
| 194 if (ext.Have("GL_ANGLE_translated_shader_source")) { | 195 if (ext.Have("GL_ANGLE_translated_shader_source")) { |
| 195 feature_flags_.angle_translated_shader_source = true; | 196 feature_flags_.angle_translated_shader_source = true; |
| 196 } | 197 } |
| 197 | 198 |
| 198 // Only turn this feature on if it is requested. Not by default. | 199 // Only turn this feature on if it is requested. Not by default. |
| 199 if (desired_features && ext.Desire("GL_CHROMIUM_webglsl")) { | 200 if (desired_features && ext.Desire("GL_CHROMIUM_webglsl")) { |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 574 if (extensions_.find(str) == std::string::npos) { | 575 if (extensions_.find(str) == std::string::npos) { |
| 575 extensions_ += (extensions_.empty() ? "" : " ") + str; | 576 extensions_ += (extensions_.empty() ? "" : " ") + str; |
| 576 } | 577 } |
| 577 } | 578 } |
| 578 | 579 |
| 579 FeatureInfo::~FeatureInfo() { | 580 FeatureInfo::~FeatureInfo() { |
| 580 } | 581 } |
| 581 | 582 |
| 582 } // namespace gles2 | 583 } // namespace gles2 |
| 583 } // namespace gpu | 584 } // namespace gpu |
| OLD | NEW |