| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 <set> | 5 #include <set> |
| 6 #include <string> | 6 #include <string> |
| 7 #include "app/gfx/gl/gl_implementation.h" | |
| 8 #include "gpu/command_buffer/service/feature_info.h" | 7 #include "gpu/command_buffer/service/feature_info.h" |
| 9 #include "gpu/command_buffer/service/gl_utils.h" | 8 #include "gpu/command_buffer/service/gl_utils.h" |
| 10 #include "gpu/GLES2/gles2_command_buffer.h" | 9 #include "gpu/GLES2/gles2_command_buffer.h" |
| 10 #include "ui/gfx/gl/gl_implementation.h" |
| 11 | 11 |
| 12 namespace gpu { | 12 namespace gpu { |
| 13 namespace gles2 { | 13 namespace gles2 { |
| 14 | 14 |
| 15 FeatureInfo::FeatureInfo() { | 15 FeatureInfo::FeatureInfo() { |
| 16 } | 16 } |
| 17 | 17 |
| 18 FeatureInfo::~FeatureInfo() { | 18 FeatureInfo::~FeatureInfo() { |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 if (extensions_.find(str) == std::string::npos) { | 344 if (extensions_.find(str) == std::string::npos) { |
| 345 extensions_ += (extensions_.empty() ? "" : " ") + str; | 345 extensions_ += (extensions_.empty() ? "" : " ") + str; |
| 346 } | 346 } |
| 347 } | 347 } |
| 348 | 348 |
| 349 } // namespace gles2 | 349 } // namespace gles2 |
| 350 } // namespace gpu | 350 } // namespace gpu |
| 351 | 351 |
| 352 | 352 |
| 353 | 353 |
| OLD | NEW |