| 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 // gpu/config/gpu_info.h | 5 // gpu/config/gpu_info.h |
| 6 module gpu.mojom; | 6 module gpu.mojom; |
| 7 | 7 |
| 8 import "gpu/ipc/common/dx_diag_node.mojom"; | 8 import "gpu/ipc/common/dx_diag_node.mojom"; |
| 9 import "mojo/common/time.mojom"; | 9 import "mojo/common/time.mojom"; |
| 10 import "mojo/common/version.mojom"; | 10 import "mojo/common/version.mojom"; |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 string gl_ws_version; | 100 string gl_ws_version; |
| 101 string gl_ws_extensions; | 101 string gl_ws_extensions; |
| 102 uint32 gl_reset_notification_strategy; | 102 uint32 gl_reset_notification_strategy; |
| 103 bool software_rendering; | 103 bool software_rendering; |
| 104 bool direct_rendering; | 104 bool direct_rendering; |
| 105 bool sandboxed; | 105 bool sandboxed; |
| 106 int32 process_crash_count; | 106 int32 process_crash_count; |
| 107 bool in_process_gpu; | 107 bool in_process_gpu; |
| 108 bool passthrough_cmd_decoder; | 108 bool passthrough_cmd_decoder; |
| 109 bool supports_overlays; | 109 bool supports_overlays; |
| 110 bool hdr; |
| 110 CollectInfoResult basic_info_state; | 111 CollectInfoResult basic_info_state; |
| 111 CollectInfoResult context_info_state; | 112 CollectInfoResult context_info_state; |
| 112 CollectInfoResult dx_diagnostics_info_state; | 113 CollectInfoResult dx_diagnostics_info_state; |
| 113 DxDiagNode? dx_diagnostics; | 114 DxDiagNode? dx_diagnostics; |
| 114 VideoDecodeAcceleratorCapabilities video_decode_accelerator_capabilities; | 115 VideoDecodeAcceleratorCapabilities video_decode_accelerator_capabilities; |
| 115 array<VideoEncodeAcceleratorSupportedProfile> | 116 array<VideoEncodeAcceleratorSupportedProfile> |
| 116 video_encode_accelerator_supported_profiles; | 117 video_encode_accelerator_supported_profiles; |
| 117 bool jpeg_decode_accelerator_supported; | 118 bool jpeg_decode_accelerator_supported; |
| 118 uint64 system_visual; | 119 uint64 system_visual; |
| 119 uint64 rgba_visual; | 120 uint64 rgba_visual; |
| 120 }; | 121 }; |
| OLD | NEW |