| 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 <stddef.h> |
| 8 |
| 7 #include <set> | 9 #include <set> |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/command_line.h" | 12 #include "base/command_line.h" |
| 11 #include "base/metrics/histogram_macros.h" | 13 #include "base/metrics/histogram_macros.h" |
| 12 #include "base/strings/string_number_conversions.h" | 14 #include "base/strings/string_number_conversions.h" |
| 13 #include "base/strings/string_split.h" | 15 #include "base/strings/string_split.h" |
| 14 #include "gpu/command_buffer/service/gpu_switches.h" | 16 #include "gpu/command_buffer/service/gpu_switches.h" |
| 15 #include "gpu/command_buffer/service/texture_definition.h" | 17 #include "gpu/command_buffer/service/texture_definition.h" |
| 16 #include "gpu/config/gpu_switches.h" | 18 #include "gpu/config/gpu_switches.h" |
| (...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1332 if (pos == std::string::npos) { | 1334 if (pos == std::string::npos) { |
| 1333 extensions_ += (extensions_.empty() ? "" : " ") + str; | 1335 extensions_ += (extensions_.empty() ? "" : " ") + str; |
| 1334 } | 1336 } |
| 1335 } | 1337 } |
| 1336 | 1338 |
| 1337 FeatureInfo::~FeatureInfo() { | 1339 FeatureInfo::~FeatureInfo() { |
| 1338 } | 1340 } |
| 1339 | 1341 |
| 1340 } // namespace gles2 | 1342 } // namespace gles2 |
| 1341 } // namespace gpu | 1343 } // namespace gpu |
| OLD | NEW |