b=340750, don't rewrap surface needlessly in gfxContext::CurrentSurface(), r=stuart

This commit is contained in:
vladimir%pobox.com 2006-06-08 01:07:08 +00:00
Родитель ff23ccae41
Коммит cecf1f2cd6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;