Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1034)

Side by Side Diff: cc/ipc/cc_param_traits_macros.h

Issue 2543473004: cc: Move filters from RenderPassDrawQuad to RenderPass (Closed)
Patch Set: Address review comments Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_CC_PARAM_TRAITS_MACROS_H_ 5 #ifndef CC_IPC_CC_PARAM_TRAITS_MACROS_H_
6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_ 6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_
7 7
8 #include "cc/output/begin_frame_args.h" 8 #include "cc/output/begin_frame_args.h"
9 #include "cc/output/compositor_frame.h" 9 #include "cc/output/compositor_frame.h"
10 #include "cc/output/filter_operation.h" 10 #include "cc/output/filter_operation.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 65 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
66 IPC_STRUCT_TRAITS_MEMBER(color) 66 IPC_STRUCT_TRAITS_MEMBER(color)
67 IPC_STRUCT_TRAITS_MEMBER(width) 67 IPC_STRUCT_TRAITS_MEMBER(width)
68 IPC_STRUCT_TRAITS_END() 68 IPC_STRUCT_TRAITS_END()
69 69
70 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) 70 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad)
71 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 71 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
72 IPC_STRUCT_TRAITS_MEMBER(render_pass_id) 72 IPC_STRUCT_TRAITS_MEMBER(render_pass_id)
73 IPC_STRUCT_TRAITS_MEMBER(mask_uv_scale) 73 IPC_STRUCT_TRAITS_MEMBER(mask_uv_scale)
74 IPC_STRUCT_TRAITS_MEMBER(mask_texture_size) 74 IPC_STRUCT_TRAITS_MEMBER(mask_texture_size)
75 IPC_STRUCT_TRAITS_MEMBER(filters)
76 IPC_STRUCT_TRAITS_MEMBER(filters_scale) 75 IPC_STRUCT_TRAITS_MEMBER(filters_scale)
77 IPC_STRUCT_TRAITS_MEMBER(filters_origin) 76 IPC_STRUCT_TRAITS_MEMBER(filters_origin)
78 IPC_STRUCT_TRAITS_MEMBER(background_filters)
79 IPC_STRUCT_TRAITS_END() 77 IPC_STRUCT_TRAITS_END()
80 78
81 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) 79 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad)
82 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 80 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
83 IPC_STRUCT_TRAITS_MEMBER(color) 81 IPC_STRUCT_TRAITS_MEMBER(color)
84 IPC_STRUCT_TRAITS_MEMBER(force_anti_aliasing_off) 82 IPC_STRUCT_TRAITS_MEMBER(force_anti_aliasing_off)
85 IPC_STRUCT_TRAITS_END() 83 IPC_STRUCT_TRAITS_END()
86 84
87 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) 85 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad)
88 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 86 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height) 183 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_height)
186 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) 184 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio)
187 IPC_STRUCT_TRAITS_MEMBER(root_background_color) 185 IPC_STRUCT_TRAITS_MEMBER(root_background_color)
188 IPC_STRUCT_TRAITS_MEMBER(selection) 186 IPC_STRUCT_TRAITS_MEMBER(selection)
189 IPC_STRUCT_TRAITS_MEMBER(latency_info) 187 IPC_STRUCT_TRAITS_MEMBER(latency_info)
190 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) 188 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences)
191 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) 189 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces)
192 IPC_STRUCT_TRAITS_END() 190 IPC_STRUCT_TRAITS_END()
193 191
194 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ 192 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698