author | Andreas Pehrson <pehrsons@gmail.com> |
Wed, 08 Jan 2014 09:43:46 +0100 | |
changeset 162929 | 0208bf5740116c3fe7ab467116694259a09bc4a0 |
parent 162928 | 59f331fd786726e5d1cb9dbdd7eb1eb6c4465e9f |
child 162930 | 8dcb1a549395ba73f3d7a68a459075470f0d1c6f |
push id | 25975 |
push user | ryanvm@gmail.com |
push date | Fri, 10 Jan 2014 19:46:47 +0000 |
treeherder | autoland@e89afc241513 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | nical |
bugs | 877115 |
milestone | 29.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/gfx/layers/Layers.cpp +++ b/gfx/layers/Layers.cpp @@ -1110,54 +1110,50 @@ void WriteSnapshotLinkToDumpFile(T* aObj } nsCString string(aObj->Name()); string.Append("-"); string.AppendInt((uint64_t)aObj); fprintf_stderr(aFile, "href=\"javascript:ViewImage('%s')\"", string.BeginReading()); } template <typename T> -void WriteSnapshotToDumpFile_internal(T* aObj, gfxASurface* aSurf) +void WriteSnapshotToDumpFile_internal(T* aObj, DataSourceSurface* aSurf) { + nsRefPtr<gfxImageSurface> deprecatedSurf = + new gfxImageSurface(aSurf->GetData(), + ThebesIntSize(aSurf->GetSize()), + aSurf->Stride(), + SurfaceFormatToImageFormat(aSurf->GetFormat())); nsCString string(aObj->Name()); string.Append("-"); string.AppendInt((uint64_t)aObj); if (gfxUtils::sDumpPaintFile) { fprintf_stderr(gfxUtils::sDumpPaintFile, "array[\"%s\"]=\"", string.BeginReading()); } - aSurf->DumpAsDataURL(gfxUtils::sDumpPaintFile); + deprecatedSurf->DumpAsDataURL(gfxUtils::sDumpPaintFile); if (gfxUtils::sDumpPaintFile) { fprintf_stderr(gfxUtils::sDumpPaintFile, "\";"); } } void WriteSnapshotToDumpFile(Layer* aLayer, DataSourceSurface* aSurf) { - nsRefPtr<gfxImageSurface> surf = - new gfxImageSurface(aSurf->GetData(), - ThebesIntSize(aSurf->GetSize()), - aSurf->Stride(), - SurfaceFormatToImageFormat(aSurf->GetFormat())); - WriteSnapshotToDumpFile_internal(aLayer, surf); + WriteSnapshotToDumpFile_internal(aLayer, aSurf); } void WriteSnapshotToDumpFile(LayerManager* aManager, DataSourceSurface* aSurf) { - nsRefPtr<gfxImageSurface> surf = - new gfxImageSurface(aSurf->GetData(), - ThebesIntSize(aSurf->GetSize()), - aSurf->Stride(), - SurfaceFormatToImageFormat(aSurf->GetFormat())); - WriteSnapshotToDumpFile_internal(aManager, surf); + WriteSnapshotToDumpFile_internal(aManager, aSurf); } void WriteSnapshotToDumpFile(Compositor* aCompositor, DrawTarget* aTarget) { - nsRefPtr<gfxASurface> surf = gfxPlatform::GetPlatform()->GetThebesSurfaceForDrawTarget(aTarget); - WriteSnapshotToDumpFile_internal(aCompositor, surf); + RefPtr<SourceSurface> surf = aTarget->Snapshot(); + RefPtr<DataSourceSurface> dSurf = surf->GetDataSurface(); + WriteSnapshotToDumpFile_internal(aCompositor, dSurf); } #endif void Layer::Dump(FILE* aFile, const char* aPrefix, bool aDumpHtml) { if (aDumpHtml) { fprintf_stderr(aFile, "<li><a id=\"%p\" ", this);