2013-02-14 03:26:24 +04: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_
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-12-03 22:44:38 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-07-30 18:25:31 +04:00
|
|
|
#include <stdint.h>
|
2013-02-14 03:26:24 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2013-05-27 18:12:13 +04:00
|
|
|
namespace layers {
|
2016-09-27 11:46:41 +03:00
|
|
|
class LayersIPCChannel;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace layers
|
2013-05-27 18:12:13 +04:00
|
|
|
|
2014-07-12 02:10:49 +04:00
|
|
|
namespace gl {
|
2013-02-14 03:26:24 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
struct SurfaceCaps final
|
2013-02-14 03:26:24 +04:00
|
|
|
{
|
|
|
|
bool any;
|
|
|
|
bool color, alpha;
|
|
|
|
bool bpp16;
|
|
|
|
bool depth, stencil;
|
|
|
|
bool antialias;
|
2014-10-08 08:11:54 +04:00
|
|
|
bool premultAlpha;
|
2013-02-14 03:26:24 +04:00
|
|
|
bool preserve;
|
|
|
|
|
2013-05-27 18:12:13 +04:00
|
|
|
// The surface allocator that we want to create this
|
|
|
|
// for. May be null.
|
2016-09-27 11:46:41 +03:00
|
|
|
RefPtr<layers::LayersIPCChannel> surfaceAllocator;
|
2013-05-27 18:12:13 +04:00
|
|
|
|
2013-12-03 22:44:38 +04:00
|
|
|
SurfaceCaps();
|
|
|
|
SurfaceCaps(const SurfaceCaps& other);
|
|
|
|
~SurfaceCaps();
|
2013-02-14 03:26:24 +04:00
|
|
|
|
2013-12-03 22:44:38 +04:00
|
|
|
void Clear();
|
|
|
|
|
|
|
|
SurfaceCaps& operator=(const SurfaceCaps& other);
|
2013-02-14 03:26:24 +04: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-26 01:22:07 +03:00
|
|
|
enum class SharedSurfaceType : uint8_t {
|
2013-02-14 03:26:24 +04:00
|
|
|
Unknown = 0,
|
|
|
|
|
|
|
|
Basic,
|
|
|
|
EGLImageShare,
|
|
|
|
EGLSurfaceANGLE,
|
|
|
|
DXGLInterop,
|
|
|
|
DXGLInterop2,
|
2013-07-18 07:24:15 +04:00
|
|
|
IOSurface,
|
2015-07-30 19:40:56 +03:00
|
|
|
GLXDrawable,
|
2015-09-24 17:11:53 +03:00
|
|
|
SharedGLTexture,
|
2017-03-04 00:14:27 +03:00
|
|
|
AndroidSurfaceTexture,
|
2013-02-14 03:26:24 +04:00
|
|
|
|
|
|
|
Max
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2013-02-14 03:26:24 +04:00
|
|
|
|
2015-01-26 01:22:07 +03:00
|
|
|
enum class AttachmentType : uint8_t {
|
2013-02-14 03:26:24 +04:00
|
|
|
Screen = 0,
|
|
|
|
|
|
|
|
GLTexture,
|
|
|
|
GLRenderbuffer,
|
|
|
|
|
|
|
|
Max
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2013-02-14 03:26:24 +04:00
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gl
|
|
|
|
|
2013-02-14 03:26:24 +04:00
|
|
|
} /* namespace mozilla */
|
|
|
|
|
|
|
|
#endif /* SURFACE_TYPES_H_ */
|