Bug 959527 - Implement SharedRGBImage::GetAsSourceSurface. r=nical

This commit is contained in:
Ali Akhtarzada 2014-01-17 11:22:56 -05:00
Родитель 9a66506254
Коммит 54e0cda57b
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -240,6 +240,12 @@ SharedRGBImage::DeprecatedGetAsSurface()
return nullptr;
}
TemporaryRef<gfx::SourceSurface>
SharedRGBImage::GetAsSourceSurface()
{
return nullptr;
}
} // namespace layers
} // namespace mozilla

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

@ -119,6 +119,8 @@ public:
already_AddRefed<gfxASurface> DeprecatedGetAsSurface();
TemporaryRef<gfx::SourceSurface> GetAsSourceSurface();
bool Allocate(gfx::IntSize aSize, gfx::SurfaceFormat aFormat);
private:
gfx::IntSize mSize;