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

Side by Side Diff: content/common/cc_messages.h

Issue 11783094: cc: Add point-based UV coordinate on TextureLayer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « cc/video_layer_impl.cc ('k') | content/common/cc_messages_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // IPC Messages sent between compositor instances. 5 // IPC Messages sent between compositor instances.
6 6
7 #include "cc/checkerboard_draw_quad.h" 7 #include "cc/checkerboard_draw_quad.h"
8 #include "cc/compositor_frame.h" 8 #include "cc/compositor_frame.h"
9 #include "cc/compositor_frame_ack.h" 9 #include "cc/compositor_frame_ack.h"
10 #include "cc/debug_border_draw_quad.h" 10 #include "cc/debug_border_draw_quad.h"
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) 169 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad)
170 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 170 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
171 IPC_STRUCT_TRAITS_MEMBER(texture_id) 171 IPC_STRUCT_TRAITS_MEMBER(texture_id)
172 IPC_STRUCT_TRAITS_MEMBER(matrix) 172 IPC_STRUCT_TRAITS_MEMBER(matrix)
173 IPC_STRUCT_TRAITS_END() 173 IPC_STRUCT_TRAITS_END()
174 174
175 IPC_STRUCT_TRAITS_BEGIN(cc::TextureDrawQuad) 175 IPC_STRUCT_TRAITS_BEGIN(cc::TextureDrawQuad)
176 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 176 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
177 IPC_STRUCT_TRAITS_MEMBER(resource_id) 177 IPC_STRUCT_TRAITS_MEMBER(resource_id)
178 IPC_STRUCT_TRAITS_MEMBER(premultiplied_alpha) 178 IPC_STRUCT_TRAITS_MEMBER(premultiplied_alpha)
179 IPC_STRUCT_TRAITS_MEMBER(uv_rect) 179 IPC_STRUCT_TRAITS_MEMBER(uv_top_left)
180 IPC_STRUCT_TRAITS_MEMBER(uv_bottom_right)
180 IPC_STRUCT_TRAITS_MEMBER(flipped) 181 IPC_STRUCT_TRAITS_MEMBER(flipped)
181 IPC_STRUCT_TRAITS_END() 182 IPC_STRUCT_TRAITS_END()
182 183
183 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) 184 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad)
184 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 185 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
185 IPC_STRUCT_TRAITS_MEMBER(resource_id) 186 IPC_STRUCT_TRAITS_MEMBER(resource_id)
186 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) 187 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect)
187 IPC_STRUCT_TRAITS_MEMBER(texture_size) 188 IPC_STRUCT_TRAITS_MEMBER(texture_size)
188 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) 189 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents)
189 IPC_STRUCT_TRAITS_MEMBER(left_edge_aa) 190 IPC_STRUCT_TRAITS_MEMBER(left_edge_aa)
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 IPC_STRUCT_TRAITS_MEMBER(min_page_scale_factor) 234 IPC_STRUCT_TRAITS_MEMBER(min_page_scale_factor)
234 IPC_STRUCT_TRAITS_MEMBER(max_page_scale_factor) 235 IPC_STRUCT_TRAITS_MEMBER(max_page_scale_factor)
235 IPC_STRUCT_TRAITS_MEMBER(location_bar_offset) 236 IPC_STRUCT_TRAITS_MEMBER(location_bar_offset)
236 IPC_STRUCT_TRAITS_MEMBER(location_bar_content_translation) 237 IPC_STRUCT_TRAITS_MEMBER(location_bar_content_translation)
237 IPC_STRUCT_TRAITS_END() 238 IPC_STRUCT_TRAITS_END()
238 239
239 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) 240 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData)
240 IPC_STRUCT_TRAITS_MEMBER(mailbox) 241 IPC_STRUCT_TRAITS_MEMBER(mailbox)
241 IPC_STRUCT_TRAITS_MEMBER(sync_point) 242 IPC_STRUCT_TRAITS_MEMBER(sync_point)
242 IPC_STRUCT_TRAITS_END() 243 IPC_STRUCT_TRAITS_END()
OLDNEW
« no previous file with comments | « cc/video_layer_impl.cc ('k') | content/common/cc_messages_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698