| 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 #ifndef GPU_CONFIG_GPU_CONTROL_LIST_H_ | 5 #ifndef GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 6 #define GPU_CONFIG_GPU_CONTROL_LIST_H_ | 6 #define GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 359 const std::string& version_string2); | 359 const std::string& version_string2); |
| 360 | 360 |
| 361 bool SetDriverDateInfo(const std::string& date_op, | 361 bool SetDriverDateInfo(const std::string& date_op, |
| 362 const std::string& date_string, | 362 const std::string& date_string, |
| 363 const std::string& date_string2); | 363 const std::string& date_string2); |
| 364 | 364 |
| 365 bool SetGLVersionInfo(const std::string& version_op, | 365 bool SetGLVersionInfo(const std::string& version_op, |
| 366 const std::string& version_string, | 366 const std::string& version_string, |
| 367 const std::string& version_string2); | 367 const std::string& version_string2); |
| 368 | 368 |
| 369 bool SetGLVersionStringInfo(const std::string& version_string_value); |
| 370 |
| 369 bool SetGLVendorInfo(const std::string& vendor_value); | 371 bool SetGLVendorInfo(const std::string& vendor_value); |
| 370 | 372 |
| 371 bool SetGLRendererInfo(const std::string& renderer_value); | 373 bool SetGLRendererInfo(const std::string& renderer_value); |
| 372 | 374 |
| 373 bool SetGLExtensionsInfo(const std::string& extensions_value); | 375 bool SetGLExtensionsInfo(const std::string& extensions_value); |
| 374 | 376 |
| 375 bool SetGLResetNotificationStrategyInfo(const std::string& op, | 377 bool SetGLResetNotificationStrategyInfo(const std::string& op, |
| 376 const std::string& int_string, | 378 const std::string& int_string, |
| 377 const std::string& int_string2); | 379 const std::string& int_string2); |
| 378 | 380 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 std::unique_ptr<OsInfo> os_info_; | 442 std::unique_ptr<OsInfo> os_info_; |
| 441 uint32_t vendor_id_; | 443 uint32_t vendor_id_; |
| 442 std::vector<uint32_t> device_id_list_; | 444 std::vector<uint32_t> device_id_list_; |
| 443 MultiGpuStyle multi_gpu_style_; | 445 MultiGpuStyle multi_gpu_style_; |
| 444 MultiGpuCategory multi_gpu_category_; | 446 MultiGpuCategory multi_gpu_category_; |
| 445 GLType gl_type_; | 447 GLType gl_type_; |
| 446 std::string driver_vendor_info_; | 448 std::string driver_vendor_info_; |
| 447 std::unique_ptr<VersionInfo> driver_version_info_; | 449 std::unique_ptr<VersionInfo> driver_version_info_; |
| 448 std::unique_ptr<VersionInfo> driver_date_info_; | 450 std::unique_ptr<VersionInfo> driver_date_info_; |
| 449 std::unique_ptr<VersionInfo> gl_version_info_; | 451 std::unique_ptr<VersionInfo> gl_version_info_; |
| 452 std::string gl_version_string_info_; |
| 450 std::string gl_vendor_info_; | 453 std::string gl_vendor_info_; |
| 451 std::string gl_renderer_info_; | 454 std::string gl_renderer_info_; |
| 452 std::string gl_extensions_info_; | 455 std::string gl_extensions_info_; |
| 453 std::unique_ptr<IntInfo> gl_reset_notification_strategy_info_; | 456 std::unique_ptr<IntInfo> gl_reset_notification_strategy_info_; |
| 454 std::string cpu_brand_; | 457 std::string cpu_brand_; |
| 455 std::unique_ptr<FloatInfo> perf_graphics_info_; | 458 std::unique_ptr<FloatInfo> perf_graphics_info_; |
| 456 std::unique_ptr<FloatInfo> perf_gaming_info_; | 459 std::unique_ptr<FloatInfo> perf_gaming_info_; |
| 457 std::unique_ptr<FloatInfo> perf_overall_info_; | 460 std::unique_ptr<FloatInfo> perf_overall_info_; |
| 458 std::vector<std::string> machine_model_name_list_; | 461 std::vector<std::string> machine_model_name_list_; |
| 459 std::unique_ptr<VersionInfo> machine_model_version_info_; | 462 std::unique_ptr<VersionInfo> machine_model_version_info_; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 490 bool supports_feature_type_all_; | 493 bool supports_feature_type_all_; |
| 491 | 494 |
| 492 bool control_list_logging_enabled_; | 495 bool control_list_logging_enabled_; |
| 493 std::string control_list_logging_name_; | 496 std::string control_list_logging_name_; |
| 494 }; | 497 }; |
| 495 | 498 |
| 496 } // namespace gpu | 499 } // namespace gpu |
| 497 | 500 |
| 498 #endif // GPU_CONFIG_GPU_CONTROL_LIST_H_ | 501 #endif // GPU_CONFIG_GPU_CONTROL_LIST_H_ |
| 499 | 502 |
| OLD | NEW |