| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CC_IPC_GPU_STRUCT_TRAITS_H_ | 5 #ifndef CC_IPC_GPU_STRUCT_TRAITS_H_ |
| 6 #define CC_IPC_GPU_STRUCT_TRAITS_H_ | 6 #define CC_IPC_GPU_STRUCT_TRAITS_H_ |
| 7 | 7 |
| 8 #include "base/time/time.h" | 8 #include "base/time/time.h" |
| 9 #include "gpu/config/gpu_info.h" | 9 #include "gpu/config/gpu_info.h" |
| 10 #include "gpu/ipc/common/dx_diag_node_struct_traits.h" | 10 #include "gpu/ipc/common/dx_diag_node_struct_traits.h" |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 } | 233 } |
| 234 | 234 |
| 235 static bool in_process_gpu(const gpu::GPUInfo& input) { | 235 static bool in_process_gpu(const gpu::GPUInfo& input) { |
| 236 return input.in_process_gpu; | 236 return input.in_process_gpu; |
| 237 } | 237 } |
| 238 | 238 |
| 239 static bool passthrough_cmd_decoder(const gpu::GPUInfo& input) { | 239 static bool passthrough_cmd_decoder(const gpu::GPUInfo& input) { |
| 240 return input.passthrough_cmd_decoder; | 240 return input.passthrough_cmd_decoder; |
| 241 } | 241 } |
| 242 | 242 |
| 243 static bool supports_overlays(const gpu::GPUInfo& input) { |
| 244 return input.supports_overlays; |
| 245 } |
| 246 |
| 243 static gpu::CollectInfoResult basic_info_state(const gpu::GPUInfo& input) { | 247 static gpu::CollectInfoResult basic_info_state(const gpu::GPUInfo& input) { |
| 244 return input.basic_info_state; | 248 return input.basic_info_state; |
| 245 } | 249 } |
| 246 | 250 |
| 247 static gpu::CollectInfoResult context_info_state(const gpu::GPUInfo& input) { | 251 static gpu::CollectInfoResult context_info_state(const gpu::GPUInfo& input) { |
| 248 return input.context_info_state; | 252 return input.context_info_state; |
| 249 } | 253 } |
| 250 #if defined(OS_WIN) | 254 #if defined(OS_WIN) |
| 251 static const gpu::DxDiagNode& dx_diagnostics(const gpu::GPUInfo& input) { | 255 static const gpu::DxDiagNode& dx_diagnostics(const gpu::GPUInfo& input) { |
| 252 return input.dx_diagnostics; | 256 return input.dx_diagnostics; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 static uint64_t rgba_visual(const gpu::GPUInfo& input) { | 296 static uint64_t rgba_visual(const gpu::GPUInfo& input) { |
| 293 #if defined(USE_X11) && !defined(OS_CHROMEOS) | 297 #if defined(USE_X11) && !defined(OS_CHROMEOS) |
| 294 return input.rgba_visual; | 298 return input.rgba_visual; |
| 295 #endif | 299 #endif |
| 296 return 0; | 300 return 0; |
| 297 } | 301 } |
| 298 }; | 302 }; |
| 299 | 303 |
| 300 } // namespace mojo | 304 } // namespace mojo |
| 301 #endif // CC_IPC_GPU_STRUCT_TRAITS_H_ | 305 #endif // CC_IPC_GPU_STRUCT_TRAITS_H_ |
| OLD | NEW |