b=340750, don't rewrap surface needlessly in gfxContext::CurrentSurface(), r=stuart
git-svn-id: svn://10.0.0.236/trunk@199474 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -76,9 +76,9 @@ gfxASurface *gfxContext::OriginalSurface()
|
||||
already_AddRefed<gfxASurface> gfxContext::CurrentSurface(gfxFloat *dx, gfxFloat *dy)
|
||||
{
|
||||
cairo_surface_t *s = cairo_get_group_target(mCairo);
|
||||
if (!s) {
|
||||
if (s == mSurface->CairoSurface()) {
|
||||
if (dx && dy)
|
||||
cairo_surface_get_device_offset (mSurface->CairoSurface(), dx, dy);
|
||||
cairo_surface_get_device_offset (s, dx, dy);
|
||||
gfxASurface *ret = mSurface;
|
||||
NS_ADDREF(ret);
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user