diff options
author | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-13 05:12:18 +0000 |
---|---|---|
committer | jamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-13 05:12:18 +0000 |
commit | 458af1e746ab64ad81fcc50f51c2328464a2fdda (patch) | |
tree | 8bde11d503a256a5964f49deb3251918821b04db /content/common/cc_messages.h | |
parent | 5964eadd8e22104afe34385079c96a69a1a14891 (diff) | |
download | chromium_src-458af1e746ab64ad81fcc50f51c2328464a2fdda.zip chromium_src-458af1e746ab64ad81fcc50f51c2328464a2fdda.tar.gz chromium_src-458af1e746ab64ad81fcc50f51c2328464a2fdda.tar.bz2 |
Combine mask texture parameters into single gfx::RectF
This folds the 4 floats together into a single parameter to be slightly easier to manage, but doesn't change the logic.
BUG=
Review URL: https://chromiumcodereview.appspot.com/11543013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172825 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/cc_messages.h')
-rw-r--r-- | content/common/cc_messages.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/content/common/cc_messages.h b/content/common/cc_messages.h index 058d81e..99c4e31 100644 --- a/content/common/cc_messages.h +++ b/content/common/cc_messages.h @@ -153,10 +153,7 @@ IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) IPC_STRUCT_TRAITS_MEMBER(is_replica) IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) - IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_scale_x) - IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_scale_y) - IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_offset_x) - IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_offset_y) + IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) IPC_STRUCT_TRAITS_END() IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) |