| 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 GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ | 5 #ifndef GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ |
| 6 #define GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ | 6 #define GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ |
| 7 | 7 |
| 8 #include "gpu/command_buffer/common/constants.h" | 8 #include "gpu/command_buffer/common/constants.h" |
| 9 #include "gpu/command_buffer/common/gpu_memory_allocation.h" | 9 #include "gpu/command_buffer/common/gpu_memory_allocation.h" |
| 10 #include "gpu/config/gpu_info.h" | 10 #include "gpu/config/gpu_info.h" |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 IPC_STRUCT_TRAITS_MEMBER(machine_model_name) | 79 IPC_STRUCT_TRAITS_MEMBER(machine_model_name) |
| 80 IPC_STRUCT_TRAITS_MEMBER(machine_model_version) | 80 IPC_STRUCT_TRAITS_MEMBER(machine_model_version) |
| 81 IPC_STRUCT_TRAITS_MEMBER(gl_version) | 81 IPC_STRUCT_TRAITS_MEMBER(gl_version) |
| 82 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) | 82 IPC_STRUCT_TRAITS_MEMBER(gl_vendor) |
| 83 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) | 83 IPC_STRUCT_TRAITS_MEMBER(gl_renderer) |
| 84 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) | 84 IPC_STRUCT_TRAITS_MEMBER(gl_extensions) |
| 85 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) | 85 IPC_STRUCT_TRAITS_MEMBER(gl_ws_vendor) |
| 86 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) | 86 IPC_STRUCT_TRAITS_MEMBER(gl_ws_version) |
| 87 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) | 87 IPC_STRUCT_TRAITS_MEMBER(gl_ws_extensions) |
| 88 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) | 88 IPC_STRUCT_TRAITS_MEMBER(gl_reset_notification_strategy) |
| 89 IPC_STRUCT_TRAITS_MEMBER(can_lose_context) | |
| 90 IPC_STRUCT_TRAITS_MEMBER(software_rendering) | 89 IPC_STRUCT_TRAITS_MEMBER(software_rendering) |
| 91 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) | 90 IPC_STRUCT_TRAITS_MEMBER(direct_rendering) |
| 92 IPC_STRUCT_TRAITS_MEMBER(sandboxed) | 91 IPC_STRUCT_TRAITS_MEMBER(sandboxed) |
| 93 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) | 92 IPC_STRUCT_TRAITS_MEMBER(process_crash_count) |
| 94 IPC_STRUCT_TRAITS_MEMBER(in_process_gpu) | 93 IPC_STRUCT_TRAITS_MEMBER(in_process_gpu) |
| 95 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) | 94 IPC_STRUCT_TRAITS_MEMBER(basic_info_state) |
| 96 IPC_STRUCT_TRAITS_MEMBER(context_info_state) | 95 IPC_STRUCT_TRAITS_MEMBER(context_info_state) |
| 97 #if defined(OS_WIN) | 96 #if defined(OS_WIN) |
| 98 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) | 97 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics_info_state) |
| 99 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) | 98 IPC_STRUCT_TRAITS_MEMBER(dx_diagnostics) |
| 100 #endif | 99 #endif |
| 101 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_capabilities) | 100 IPC_STRUCT_TRAITS_MEMBER(video_decode_accelerator_capabilities) |
| 102 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) | 101 IPC_STRUCT_TRAITS_MEMBER(video_encode_accelerator_supported_profiles) |
| 103 IPC_STRUCT_TRAITS_MEMBER(jpeg_decode_accelerator_supported) | 102 IPC_STRUCT_TRAITS_MEMBER(jpeg_decode_accelerator_supported) |
| 104 IPC_STRUCT_TRAITS_END() | 103 IPC_STRUCT_TRAITS_END() |
| 105 | 104 |
| 106 IPC_STRUCT_TRAITS_BEGIN(gpu::MemoryAllocation) | 105 IPC_STRUCT_TRAITS_BEGIN(gpu::MemoryAllocation) |
| 107 IPC_STRUCT_TRAITS_MEMBER(bytes_limit_when_visible) | 106 IPC_STRUCT_TRAITS_MEMBER(bytes_limit_when_visible) |
| 108 IPC_STRUCT_TRAITS_MEMBER(priority_cutoff_when_visible) | 107 IPC_STRUCT_TRAITS_MEMBER(priority_cutoff_when_visible) |
| 109 IPC_STRUCT_TRAITS_END() | 108 IPC_STRUCT_TRAITS_END() |
| 110 | 109 |
| 111 #endif // GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ | 110 #endif // GPU_IPC_COMMON_GPU_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |