summaryrefslogtreecommitdiffstats
path: root/cc/render_surface_impl.cc
diff options
context:
space:
mode:
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 02:00:09 +0000
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-06 02:00:09 +0000
commit3624ef0d872f49dbd35acbf28458ac0ba68f0815 (patch)
treebdefba5ea0300be01e33ed7eb1d97a499e1eee2b /cc/render_surface_impl.cc
parent54597980fe214183b6548df4abacd78f46eb8ae3 (diff)
downloadchromium_src-3624ef0d872f49dbd35acbf28458ac0ba68f0815.zip
chromium_src-3624ef0d872f49dbd35acbf28458ac0ba68f0815.tar.gz
chromium_src-3624ef0d872f49dbd35acbf28458ac0ba68f0815.tar.bz2
cc: The RenderSurface contentRect can have negative position.
The position of the RenderSurface contentRect is relative to the position of its owning layer. The size of the contentRect should fit inside the unclipped surface rect. R=piman,shawnsingh BUG=171734 Review URL: https://chromiumcodereview.appspot.com/12179022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180858 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/render_surface_impl.cc')
-rw-r--r--cc/render_surface_impl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/cc/render_surface_impl.cc b/cc/render_surface_impl.cc
index c7a346b..4278a2d 100644
--- a/cc/render_surface_impl.cc
+++ b/cc/render_surface_impl.cc
@@ -209,7 +209,8 @@ void RenderSurfaceImpl::appendQuads(QuadSink& quadSink, AppendQuadsData& appendQ
owningLayerDrawScale.y());
// This assumes that the owning layer clips its subtree when a mask is
// present.
- DCHECK(gfx::RectF(unclippedSurfaceSize).Contains(contentRect()));
+ DCHECK(gfx::RectF(unclippedSurfaceSize).Contains(
+ gfx::Rect(contentRect().size())));
float uvScaleX = contentRect().width() / unclippedSurfaceSize.width();
float uvScaleY = contentRect().height() / unclippedSurfaceSize.height();