зеркало из https://github.com/mozilla/gecko-dev.git
Bug 900393 - Implement missing method in DeprecatedSharedRGBImage. r=eflores
This commit is contained in:
Родитель
73bc871f6d
Коммит
8f66891960
|
@ -40,7 +40,9 @@ public:
|
|||
DeprecatedSharedRGBImage(ISurfaceAllocator *aAllocator);
|
||||
~DeprecatedSharedRGBImage();
|
||||
|
||||
uint8_t *GetBuffer();
|
||||
virtual ISharedImage* AsSharedImage() MOZ_OVERRIDE { return this; }
|
||||
|
||||
virtual uint8_t *GetBuffer() MOZ_OVERRIDE;
|
||||
|
||||
gfxIntSize GetSize();
|
||||
size_t GetBufferSize();
|
||||
|
@ -94,6 +96,8 @@ public:
|
|||
SharedRGBImage(ImageClient* aCompositable);
|
||||
~SharedRGBImage();
|
||||
|
||||
virtual ISharedImage* AsSharedImage() MOZ_OVERRIDE { return this; }
|
||||
|
||||
virtual TextureClient* GetTextureClient() MOZ_OVERRIDE;
|
||||
|
||||
virtual uint8_t* GetBuffer() MOZ_OVERRIDE;
|
||||
|
|
Загрузка…
Ссылка в новой задаче