| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
| 6 #include "gpu/config/gpu_blacklist.h" | 6 #include "gpu/config/gpu_blacklist.h" |
| 7 #include "gpu/config/gpu_control_list_jsons.h" | 7 #include "gpu/config/gpu_control_list_jsons.h" |
| 8 #include "gpu/config/gpu_feature_type.h" | 8 #include "gpu/config/gpu_feature_type.h" |
| 9 #include "gpu/config/gpu_info.h" | 9 #include "gpu/config/gpu_info.h" |
| 10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 EXPECT_EQ(1u, type.count(feature_type)); | 54 EXPECT_EQ(1u, type.count(feature_type)); |
| 55 } | 55 } |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 virtual void SetUp() { | 58 virtual void SetUp() { |
| 59 gpu_info_.gpu.vendor_id = 0x10de; | 59 gpu_info_.gpu.vendor_id = 0x10de; |
| 60 gpu_info_.gpu.device_id = 0x0640; | 60 gpu_info_.gpu.device_id = 0x0640; |
| 61 gpu_info_.driver_vendor = "NVIDIA"; | 61 gpu_info_.driver_vendor = "NVIDIA"; |
| 62 gpu_info_.driver_version = "1.6.18"; | 62 gpu_info_.driver_version = "1.6.18"; |
| 63 gpu_info_.driver_date = "7-14-2009"; | 63 gpu_info_.driver_date = "7-14-2009"; |
| 64 gpu_info_.machine_model = "MacBookPro 7.1"; | 64 gpu_info_.machine_model_name = "MacBookPro"; |
| 65 gpu_info_.machine_model_version = "7.1"; |
| 65 gpu_info_.gl_vendor = "NVIDIA Corporation"; | 66 gpu_info_.gl_vendor = "NVIDIA Corporation"; |
| 66 gpu_info_.gl_renderer = "NVIDIA GeForce GT 120 OpenGL Engine"; | 67 gpu_info_.gl_renderer = "NVIDIA GeForce GT 120 OpenGL Engine"; |
| 67 gpu_info_.performance_stats.graphics = 5.0; | 68 gpu_info_.performance_stats.graphics = 5.0; |
| 68 gpu_info_.performance_stats.gaming = 5.0; | 69 gpu_info_.performance_stats.gaming = 5.0; |
| 69 gpu_info_.performance_stats.overall = 5.0; | 70 gpu_info_.performance_stats.overall = 5.0; |
| 70 } | 71 } |
| 71 | 72 |
| 72 virtual void TearDown() { | 73 virtual void TearDown() { |
| 73 } | 74 } |
| 74 | 75 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 130 |
| 130 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 131 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
| 131 "panel_fitting", | 132 "panel_fitting", |
| 132 GPU_FEATURE_TYPE_PANEL_FITTING) | 133 GPU_FEATURE_TYPE_PANEL_FITTING) |
| 133 | 134 |
| 134 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 135 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
| 135 "gpu_rasterization", | 136 "gpu_rasterization", |
| 136 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 137 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
| 137 | 138 |
| 138 } // namespace gpu | 139 } // namespace gpu |
| OLD | NEW |