gecko/gfx/layers/ipc/SharedRGBImage.h
Edwin Flores d1720c9ea8 Bug 803394 - Add image type for RGB images in shared memory r=nical
--HG--
extra : rebase_source : 3be9bbbcf827c0796d7b0a39724f3372ac080632
2012-12-13 11:47:28 +13:00

62 lines
1.4 KiB
C++

/* 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 "ImageContainer.h"
namespace mozilla {
namespace ipc {
class Shmem;
}
namespace layers {
class ImageContainerChild;
class SharedImage;
/**
* Stores RGB data in shared memory
* It is assumed that the image width and stride are equal
*/
class SharedRGBImage : public Image
{
typedef gfxASurface::gfxImageFormat gfxImageFormat;
public:
struct Header {
gfxImageFormat mImageFormat;
};
SharedRGBImage(ImageContainerChild *aImageContainerChild);
~SharedRGBImage();
static already_AddRefed<SharedRGBImage> Create(ImageContainer *aImageContainer,
nsIntSize aSize,
gfxImageFormat aImageFormat);
uint8_t *GetBuffer();
gfxIntSize GetSize();
size_t GetBufferSize();
static uint8_t BytesPerPixel(gfxImageFormat aImageFormat);
already_AddRefed<gfxASurface> GetAsSurface();
SharedImage *ToSharedImage();
private:
bool AllocateBuffer(nsIntSize aSize, gfxImageFormat aImageFormat);
gfxIntSize mSize;
gfxImageFormat mImageFormat;
ImageContainerChild *mImageContainerChild;
bool mAllocated;
ipc::Shmem *mShmem;
};
} // namespace layers
} // namespace mozilla
#endif