2013-02-13 15:26:24 -08:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40; -*- */
|
|
|
|
/* 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 SURFACE_TYPES_H_
|
|
|
|
#define SURFACE_TYPES_H_
|
|
|
|
|
2013-12-03 10:44:38 -08:00
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2013-07-30 07:25:31 -07:00
|
|
|
#include <stdint.h>
|
2013-02-13 15:26:24 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-05-27 07:12:13 -07:00
|
|
|
namespace layers {
|
|
|
|
class ISurfaceAllocator;
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace layers
|
2013-05-27 07:12:13 -07:00
|
|
|
|
2014-07-11 15:10:49 -07:00
|
|
|
namespace gl {
|
2013-02-13 15:26:24 -08:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
struct SurfaceCaps final
|
2013-02-13 15:26:24 -08:00
|
|
|
{
|
|
|
|
bool any;
|
|
|
|
bool color, alpha;
|
|
|
|
bool bpp16;
|
|
|
|
bool depth, stencil;
|
|
|
|
bool antialias;
|
2014-10-07 21:11:54 -07:00
|
|
|
bool premultAlpha;
|
2013-02-13 15:26:24 -08:00
|
|
|
bool preserve;
|
|
|
|
|
2013-05-27 07:12:13 -07:00
|
|
|
// The surface allocator that we want to create this
|
|
|
|
// for. May be null.
|
2013-12-03 10:44:38 -08:00
|
|
|
RefPtr<layers::ISurfaceAllocator> surfaceAllocator;
|
2013-05-27 07:12:13 -07:00
|
|
|
|
2013-12-03 10:44:38 -08:00
|
|
|
SurfaceCaps();
|
|
|
|
SurfaceCaps(const SurfaceCaps& other);
|
|
|
|
~SurfaceCaps();
|
2013-02-13 15:26:24 -08:00
|
|
|
|
2013-12-03 10:44:38 -08:00
|
|
|
void Clear();
|
|
|
|
|
|
|
|
SurfaceCaps& operator=(const SurfaceCaps& other);
|
2013-02-13 15:26:24 -08:00
|
|
|
|
|
|
|
// We can't use just 'RGB' here, since it's an ancient Windows macro.
|
|
|
|
static SurfaceCaps ForRGB() {
|
|
|
|
SurfaceCaps caps;
|
|
|
|
|
|
|
|
caps.color = true;
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SurfaceCaps ForRGBA() {
|
|
|
|
SurfaceCaps caps;
|
|
|
|
|
|
|
|
caps.color = true;
|
|
|
|
caps.alpha = true;
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
static SurfaceCaps Any() {
|
|
|
|
SurfaceCaps caps;
|
|
|
|
|
|
|
|
caps.any = true;
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-25 14:22:07 -08:00
|
|
|
enum class SharedSurfaceType : uint8_t {
|
2013-02-13 15:26:24 -08:00
|
|
|
Unknown = 0,
|
|
|
|
|
|
|
|
Basic,
|
|
|
|
EGLImageShare,
|
|
|
|
EGLSurfaceANGLE,
|
|
|
|
DXGLInterop,
|
|
|
|
DXGLInterop2,
|
|
|
|
Gralloc,
|
2013-07-17 20:24:15 -07:00
|
|
|
IOSurface,
|
2015-07-30 09:40:56 -07:00
|
|
|
GLXDrawable,
|
2013-02-13 15:26:24 -08:00
|
|
|
|
|
|
|
Max
|
2015-01-25 14:22:07 -08:00
|
|
|
};
|
2013-02-13 15:26:24 -08:00
|
|
|
|
2015-01-25 14:22:07 -08:00
|
|
|
enum class AttachmentType : uint8_t {
|
2013-02-13 15:26:24 -08:00
|
|
|
Screen = 0,
|
|
|
|
|
|
|
|
GLTexture,
|
|
|
|
GLRenderbuffer,
|
|
|
|
|
|
|
|
Max
|
2015-01-25 14:22:07 -08:00
|
|
|
};
|
2013-02-13 15:26:24 -08:00
|
|
|
|
2015-07-13 08:25:42 -07:00
|
|
|
} // namespace gl
|
|
|
|
|
2013-02-13 15:26:24 -08:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
|
|
|
#endif /* SURFACE_TYPES_H_ */
|