diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /gfx/layers/ipc/SharedRGBImage.h | |
parent | 15477ed9af4859dacb069040b5d4de600803d3bc (diff) | |
download | uxp-ad18d877ddd2a44d98fa12ccd3dbbcf4d0ac4299.tar.gz |
Add m-esr52 at 52.6.0
Diffstat (limited to 'gfx/layers/ipc/SharedRGBImage.h')
-rw-r--r-- | gfx/layers/ipc/SharedRGBImage.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/gfx/layers/ipc/SharedRGBImage.h b/gfx/layers/ipc/SharedRGBImage.h new file mode 100644 index 0000000000..2c6009c19c --- /dev/null +++ b/gfx/layers/ipc/SharedRGBImage.h @@ -0,0 +1,59 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef SHAREDRGBIMAGE_H_ +#define SHAREDRGBIMAGE_H_ + +#include <stddef.h> // for size_t +#include <stdint.h> // for uint8_t +#include "ImageContainer.h" // for ISharedImage, Image, etc +#include "gfxTypes.h" +#include "mozilla/Attributes.h" // for override +#include "mozilla/RefPtr.h" // for RefPtr +#include "mozilla/gfx/Point.h" // for IntSize +#include "mozilla/gfx/Types.h" // for SurfaceFormat +#include "nsCOMPtr.h" // for already_AddRefed + +namespace mozilla { +namespace layers { + +class ImageClient; +class TextureClient; + +already_AddRefed<Image> CreateSharedRGBImage(ImageContainer* aImageContainer, + gfx::IntSize aSize, + gfxImageFormat aImageFormat); + +/** + * Stores RGB data in shared memory + * It is assumed that the image width and stride are equal + */ +class SharedRGBImage : public Image +{ +public: + explicit SharedRGBImage(ImageClient* aCompositable); + +protected: + ~SharedRGBImage(); + +public: + virtual TextureClient* GetTextureClient(KnowsCompositor* aForwarder) override; + + virtual uint8_t* GetBuffer() override; + + gfx::IntSize GetSize() override; + + already_AddRefed<gfx::SourceSurface> GetAsSourceSurface() override; + + bool Allocate(gfx::IntSize aSize, gfx::SurfaceFormat aFormat); +private: + gfx::IntSize mSize; + RefPtr<ImageClient> mCompositable; + RefPtr<TextureClient> mTextureClient; +}; + +} // namespace layers +} // namespace mozilla + +#endif |