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;
|
2013-02-13 23:26:24 +00:00
|
|
|
using mozilla::gfx::SurfaceStreamHandle;
|
2012-07-13 19:38:09 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace layers {
|
|
|
|
|
|
|
|
union MaybeMagicGrallocBufferHandle {
|
|
|
|
MagicGrallocBufferHandle;
|
|
|
|
null_t;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SurfaceDescriptorD3D10 {
|
|
|
|
WindowsHandle handle;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
bool hasAlpha;
|
2012-07-13 19:38:09 +00:00
|
|
|
};
|
|
|
|
|
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;
|
2013-03-28 13:59:47 +00:00
|
|
|
/**
|
|
|
|
* android::GraphicBuffer has a size information. But there are cases
|
|
|
|
* that GraphicBuffer's size and actual video's size are different.
|
|
|
|
* Extra size member is necessary. See Bug 850566.
|
|
|
|
*/
|
|
|
|
nsIntSize size;
|
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;
|
2013-05-27 14:12:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This gralloc buffer will be treated as if the RB bytes are swapped.
|
|
|
|
* This is useful for rendering using Cairo/Thebes, because there is no
|
|
|
|
* BGRX Android pixel format, and so we have to do byte swapping.
|
|
|
|
*
|
|
|
|
* For example, if the GraphicBuffer has an Android pixel format of
|
|
|
|
* PIXEL_FORMAT_RGBA_8888 and isRBSwapped is true, when it is sampled
|
|
|
|
* (for example, with GL), a BGRA shader should be used.
|
|
|
|
*/
|
|
|
|
bool isRBSwapped;
|
2012-07-13 19:38:09 +00:00
|
|
|
};
|
|
|
|
|
2013-02-13 23:26:24 +00:00
|
|
|
struct SurfaceStreamDescriptor {
|
|
|
|
SurfaceStreamHandle handle;
|
|
|
|
bool yflip;
|
|
|
|
};
|
|
|
|
|
2012-09-13 20:52:26 +00:00
|
|
|
struct YCbCrImage {
|
|
|
|
Shmem data;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
uint64_t owner;
|
2012-09-13 20:52:26 +00:00
|
|
|
};
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
// XXX remove RGBImage (see bug 847914)
|
2012-12-12 22:47:28 +00:00
|
|
|
struct RGBImage {
|
|
|
|
Shmem data;
|
|
|
|
nsIntRect picture;
|
|
|
|
uint32_t rgbFormat;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
uint64_t owner;
|
2012-12-12 22:47:28 +00:00
|
|
|
};
|
|
|
|
|
2013-05-22 07:04:12 +00:00
|
|
|
struct MemoryImage {
|
|
|
|
uintptr_t data;
|
|
|
|
gfxIntSize size;
|
|
|
|
uint32_t stride;
|
|
|
|
uint32_t format;
|
|
|
|
};
|
|
|
|
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
union SurfaceDescriptor {
|
|
|
|
Shmem;
|
|
|
|
SurfaceDescriptorD3D10;
|
|
|
|
SurfaceDescriptorGralloc;
|
|
|
|
SurfaceDescriptorX11;
|
2012-09-13 20:52:26 +00:00
|
|
|
YCbCrImage;
|
Bug 825928: Land layers refactoring. r=jrmuizel,bas,nical,mattwoodrow,roc,nrc,benwa,bjacob,jgilbert,kchen CLOSED TREE
Please contact Bas Schouten <bschouten@mozilla.com>, Nicolas Silva <nsilva@mozilla.com> or Nicholas Cameron <ncameron@mozilla.com> with general questions. Below is a rough list of authors to contact with specific questions.
Authors:
gfx/layers/Compositor.* gfx/layers/Effects.h - Compositor Interface - bas,nrc,nical
gfx/layers/d3d* - D3D9/D3D10 - bas
gfx/layers/ThebesLayer* - ThebesLayers - nrc,bas
gfx/layers/composite/* - CompositeLayers - nrc,nical
gfx/layers/client/* - Client - nrc,nical,bas
gfx/layers/*Image* - nical
gfx/layers/ipc ipc - IPC - nical
gfx/layers/opengl - CompositorOGL - nrc,nical
gfx/2d - bas,nrc
gfx/gl - GLContext - bjacob
dom/* layout/* - DOM - mattwoodrow
2013-04-10 09:20:52 +00:00
|
|
|
RGBImage;
|
|
|
|
SharedTextureDescriptor;
|
|
|
|
SurfaceStreamDescriptor;
|
2013-05-22 07:04:12 +00:00
|
|
|
MemoryImage;
|
2012-07-13 19:38:09 +00:00
|
|
|
null_t;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
} // namespace
|