2012-07-13 19:38:09 +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/. */
|
|
|
|
|
|
|
|
include protocol PGrallocBuffer;
|
|
|
|
|
|
|
|
include "gfxipc/ShadowLayerUtils.h";
|
|
|
|
|
|
|
|
using gfx3DMatrix;
|
|
|
|
using gfxIntSize;
|
|
|
|
using gfxPoint;
|
|
|
|
using gfxRGBA;
|
|
|
|
using nsIntPoint;
|
|
|
|
using nsIntRect;
|
|
|
|
using nsIntRegion;
|
|
|
|
using nsIntSize;
|
|
|
|
using mozilla::gfxContentType;
|
|
|
|
using mozilla::GraphicsFilterType;
|
|
|
|
using mozilla::layers::FrameMetrics;
|
|
|
|
using mozilla::layers::MagicGrallocBufferHandle;
|
|
|
|
using mozilla::layers::SurfaceDescriptorX11;
|
|
|
|
using mozilla::null_t;
|
|
|
|
using mozilla::WindowsHandle;
|
2012-06-01 01:30:08 +00:00
|
|
|
using mozilla::gl::SharedTextureHandle;
|
2012-11-26 22:23:27 +00:00
|
|
|
using mozilla::gl::GLContext::SharedTextureShareType;
|
2012-07-13 19:38:09 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
union MaybeMagicGrallocBufferHandle {
|
|
|
|
MagicGrallocBufferHandle;
|
|
|
|
null_t;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SurfaceDescriptorD3D10 {
|
|
|
|
WindowsHandle handle;
|
|
|
|
};
|
|
|
|
|
2012-06-01 01:30:08 +00:00
|
|
|
struct SharedTextureDescriptor {
|
2012-11-26 22:23:27 +00:00
|
|
|
SharedTextureShareType shareType;
|
2012-06-01 01:30:08 +00:00
|
|
|
SharedTextureHandle handle;
|
|
|
|
nsIntSize size;
|
2012-07-20 19:20:51 +00:00
|
|
|
bool inverted;
|
2012-06-01 01:30:08 +00:00
|
|
|
};
|
|
|
|
|
2012-07-13 19:38:09 +00:00
|
|
|
struct SurfaceDescriptorGralloc {
|
|
|
|
PGrallocBuffer buffer;
|
2012-08-17 10:56:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* We can have one source producing gralloc buffers and sharing them
|
|
|
|
* with another source that may also produce its own gralloc buffers.
|
|
|
|
* This happens for camera preview buffers sent to video code. When
|
|
|
|
* that happens, the producer can mark the buffer as "external" to
|
|
|
|
* prevent its consumer from mistakenly freeing the buffer.
|
|
|
|
*/
|
|
|
|
bool external;
|
2012-07-13 19:38:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SharedImageID {
|
2012-08-22 15:56:38 +00:00
|
|
|
uint64_t id;
|
2012-07-13 19:38:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
union SurfaceDescriptor {
|
|
|
|
Shmem;
|
|
|
|
SurfaceDescriptorD3D10;
|
|
|
|
SurfaceDescriptorGralloc;
|
|
|
|
SurfaceDescriptorX11;
|
2012-06-01 01:30:08 +00:00
|
|
|
SharedTextureDescriptor;
|
2012-07-13 19:38:09 +00:00
|
|
|
};
|
|
|
|
|
2012-09-13 20:52:26 +00:00
|
|
|
struct YCbCrImage {
|
|
|
|
Shmem data;
|
|
|
|
size_t offset;
|
|
|
|
nsIntRect picture;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Will be removed in the near future
|
2012-07-13 19:38:09 +00:00
|
|
|
struct YUVImage {
|
|
|
|
Shmem Ydata;
|
|
|
|
Shmem Udata;
|
|
|
|
Shmem Vdata;
|
|
|
|
nsIntRect picture;
|
|
|
|
};
|
|
|
|
|
|
|
|
union SharedImage {
|
|
|
|
SurfaceDescriptor;
|
2012-09-13 20:52:26 +00:00
|
|
|
YCbCrImage;
|
2012-07-13 19:38:09 +00:00
|
|
|
YUVImage;
|
|
|
|
SharedImageID;
|
|
|
|
null_t;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
} // namespace
|