2012-08-19 23:33:25 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* 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 GFX_IMAGETYPES_H
|
|
|
|
#define GFX_IMAGETYPES_H
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
enum ImageFormat {
|
|
|
|
/**
|
|
|
|
* The PLANAR_YCBCR format creates a PlanarYCbCrImage. All backends should
|
|
|
|
* support this format, because the Ogg video decoder depends on it.
|
|
|
|
* The maximum image width and height is 16384.
|
|
|
|
*/
|
|
|
|
PLANAR_YCBCR,
|
|
|
|
|
2012-08-21 14:22:58 +04:00
|
|
|
/**
|
2013-07-25 06:13:35 +04:00
|
|
|
* The GRALLOC_PLANAR_YCBCR format creates a GrallocImage, a subtype of
|
|
|
|
* PlanarYCbCrImage. It takes a PlanarYCbCrImage data or the raw gralloc
|
|
|
|
* data and can be used as a texture by Gonk backend directly.
|
2012-08-21 14:22:58 +04:00
|
|
|
*/
|
|
|
|
GRALLOC_PLANAR_YCBCR,
|
|
|
|
|
2012-12-13 02:47:28 +04:00
|
|
|
/**
|
2013-07-24 20:08:35 +04:00
|
|
|
* The SHARED_RGB format creates a DeprecatedSharedRGBImage, which stores RGB data in
|
2012-12-13 02:47:28 +04:00
|
|
|
* shared memory. Some Android hardware video decoders require this format.
|
|
|
|
* Currently only used on Android.
|
|
|
|
*/
|
|
|
|
SHARED_RGB,
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
/**
|
|
|
|
* The CAIRO_SURFACE format creates a CairoImage. All backends should
|
|
|
|
* support this format, because video rendering sometimes requires it.
|
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 13:20:52 +04:00
|
|
|
*
|
2012-08-19 23:33:25 +04:00
|
|
|
* This format is useful even though a ThebesLayer could be used.
|
|
|
|
* It makes it easy to render a cairo surface when another Image format
|
|
|
|
* could be used. It can also avoid copying the surface data in some
|
|
|
|
* cases.
|
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 13:20:52 +04:00
|
|
|
*
|
2012-08-19 23:33:25 +04:00
|
|
|
* Images in CAIRO_SURFACE format should only be created and
|
|
|
|
* manipulated on the main thread, since the underlying cairo surface
|
|
|
|
* is main-thread-only.
|
|
|
|
*/
|
|
|
|
CAIRO_SURFACE,
|
|
|
|
|
2013-11-01 05:54:14 +04:00
|
|
|
/**
|
|
|
|
* A MacIOSurface object.
|
|
|
|
*/
|
|
|
|
MAC_IOSURFACE,
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
/**
|
|
|
|
* An bitmap image that can be shared with a remote process.
|
|
|
|
*/
|
|
|
|
REMOTE_IMAGE_BITMAP,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A OpenGL texture that can be shared across threads or processes
|
|
|
|
*/
|
|
|
|
SHARED_TEXTURE,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An DXGI shared surface handle that can be shared with a remote process.
|
|
|
|
*/
|
2013-05-04 14:12:40 +04:00
|
|
|
REMOTE_IMAGE_DXGI_TEXTURE,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The D3D9_RGB32_TEXTURE format creates a D3D9SurfaceImage, and wraps a
|
|
|
|
* IDirect3DTexture9 in RGB32 layout.
|
|
|
|
*/
|
|
|
|
D3D9_RGB32_TEXTURE
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
enum StereoMode {
|
|
|
|
STEREO_MODE_MONO,
|
|
|
|
STEREO_MODE_LEFT_RIGHT,
|
|
|
|
STEREO_MODE_RIGHT_LEFT,
|
|
|
|
STEREO_MODE_BOTTOM_TOP,
|
|
|
|
STEREO_MODE_TOP_BOTTOM
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2012-08-21 14:22:58 +04:00
|
|
|
#endif
|