2012-12-12 22:47:28 +00:00
|
|
|
/* 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_
|
|
|
|
|
2013-08-11 23:17:23 +00:00
|
|
|
#include <stddef.h> // for size_t
|
|
|
|
#include <stdint.h> // for uint8_t
|
|
|
|
#include "ImageContainer.h" // for ISharedImage, Image, etc
|
2013-09-24 20:45:14 +00:00
|
|
|
#include "gfxTypes.h"
|
2015-03-21 16:28:04 +00:00
|
|
|
#include "mozilla/Attributes.h" // for override
|
2013-08-11 23:17:23 +00:00
|
|
|
#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
|
2012-12-12 22:47:28 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
2013-08-11 23:17:23 +00:00
|
|
|
|
2013-07-30 09:59:51 +00:00
|
|
|
class BufferTextureClient;
|
|
|
|
class ImageClient;
|
2013-08-11 23:17:23 +00:00
|
|
|
class TextureClient;
|
2013-07-30 09:59:51 +00:00
|
|
|
|
|
|
|
already_AddRefed<Image> CreateSharedRGBImage(ImageContainer* aImageContainer,
|
|
|
|
nsIntSize aSize,
|
2013-09-24 20:45:13 +00:00
|
|
|
gfxImageFormat aImageFormat);
|
2012-12-12 22:47:28 +00:00
|
|
|
|
2013-07-30 09:59:51 +00:00
|
|
|
/**
|
|
|
|
* Stores RGB data in shared memory
|
|
|
|
* It is assumed that the image width and stride are equal
|
|
|
|
*/
|
|
|
|
class SharedRGBImage : public Image
|
|
|
|
{
|
|
|
|
public:
|
2014-08-20 04:55:14 +00:00
|
|
|
explicit SharedRGBImage(ImageClient* aCompositable);
|
2014-07-15 15:37:45 +00:00
|
|
|
|
|
|
|
protected:
|
2013-07-30 09:59:51 +00:00
|
|
|
~SharedRGBImage();
|
|
|
|
|
2014-07-15 15:37:45 +00:00
|
|
|
public:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual TextureClient* GetTextureClient(CompositableClient* aClient) override;
|
2013-07-30 09:59:51 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual uint8_t* GetBuffer() override;
|
2013-07-30 09:59:51 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
gfx::IntSize GetSize() override;
|
2013-07-30 09:59:51 +00:00
|
|
|
|
|
|
|
size_t GetBufferSize();
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
TemporaryRef<gfx::SourceSurface> GetAsSourceSurface() override;
|
2014-01-17 16:22:56 +00:00
|
|
|
|
2013-07-30 09:59:51 +00:00
|
|
|
bool Allocate(gfx::IntSize aSize, gfx::SurfaceFormat aFormat);
|
|
|
|
private:
|
|
|
|
gfx::IntSize mSize;
|
|
|
|
RefPtr<ImageClient> mCompositable;
|
|
|
|
RefPtr<BufferTextureClient> mTextureClient;
|
|
|
|
};
|
|
|
|
|
2012-12-12 22:47:28 +00:00
|
|
|
} // namespace layers
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|