mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-18 23:15:38 +00:00
Bug 900393 - Implement missing method in DeprecatedSharedRGBImage. r=eflores
This commit is contained in:
parent
73bc871f6d
commit
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user