2013-06-11 00:00:35 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* 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 WEBGLTYPES_H_
|
|
|
|
#define WEBGLTYPES_H_
|
|
|
|
|
2013-09-04 16:14:44 +04:00
|
|
|
// Most WebIDL typedefs are identical to their OpenGL counterparts.
|
|
|
|
#include "GLTypes.h"
|
|
|
|
|
|
|
|
// Manual reflection of WebIDL typedefs that are different from their
|
|
|
|
// OpenGL counterparts.
|
2013-06-11 00:00:35 +04:00
|
|
|
typedef int64_t WebGLsizeiptr;
|
|
|
|
typedef int64_t WebGLintptr;
|
|
|
|
typedef bool WebGLboolean;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2016-07-22 09:25:41 +03:00
|
|
|
namespace gl {
|
2018-11-30 13:46:48 +03:00
|
|
|
class GLContext; // This is going to be needed a lot.
|
|
|
|
} // namespace gl
|
2013-06-11 00:00:35 +04:00
|
|
|
|
2013-10-11 17:16:43 +04:00
|
|
|
/*
|
|
|
|
* Implementing WebGL (or OpenGL ES 2.0) on top of desktop OpenGL requires
|
|
|
|
* emulating the vertex attrib 0 array when it's not enabled. Indeed,
|
|
|
|
* OpenGL ES 2.0 allows drawing without vertex attrib 0 array enabled, but
|
|
|
|
* desktop OpenGL does not allow that.
|
|
|
|
*/
|
2015-01-26 01:22:07 +03:00
|
|
|
enum class WebGLVertexAttrib0Status : uint8_t {
|
2018-11-30 13:46:48 +03:00
|
|
|
Default, // default status - no emulation needed
|
|
|
|
EmulatedUninitializedArray, // need an artificial attrib 0 array, but
|
|
|
|
// contents may be left uninitialized
|
|
|
|
EmulatedInitializedArray // need an artificial attrib 0 array, and contents
|
|
|
|
// must be initialized
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2013-06-11 00:00:35 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The formats that may participate, either as source or destination formats,
|
|
|
|
* in WebGL texture conversions. This includes:
|
|
|
|
* - all the formats accepted by WebGL.texImage2D, e.g. RGBA4444
|
|
|
|
* - additional formats provided by extensions, e.g. RGB32F
|
2018-11-30 13:46:48 +03:00
|
|
|
* - additional source formats, depending on browser details, used when
|
|
|
|
* uploading textures from DOM elements. See gfxImageSurface::Format().
|
2013-06-11 00:00:35 +04:00
|
|
|
*/
|
2015-01-26 01:22:07 +03:00
|
|
|
enum class WebGLTexelFormat : uint8_t {
|
2018-11-30 13:46:48 +03:00
|
|
|
// returned by SurfaceFromElementResultToImageSurface to indicate absence of
|
|
|
|
// image data
|
|
|
|
None,
|
|
|
|
// common value for formats for which format conversions are not supported
|
|
|
|
FormatNotSupportingAnyConversion,
|
|
|
|
// dummy pseudo-format meaning "use the other format".
|
|
|
|
// For example, if SrcFormat=Auto and DstFormat=RGB8, then the source
|
|
|
|
// is implicitly treated as being RGB8 itself.
|
|
|
|
Auto,
|
|
|
|
// 1-channel formats
|
|
|
|
A8,
|
|
|
|
A16F, // OES_texture_half_float
|
|
|
|
A32F, // OES_texture_float
|
|
|
|
R8,
|
|
|
|
R16F, // OES_texture_half_float
|
|
|
|
R32F, // OES_texture_float
|
|
|
|
// 2-channel formats
|
|
|
|
RA8,
|
|
|
|
RA16F, // OES_texture_half_float
|
|
|
|
RA32F, // OES_texture_float
|
|
|
|
RG8,
|
|
|
|
RG16F,
|
|
|
|
RG32F,
|
|
|
|
// 3-channel formats
|
|
|
|
RGB8,
|
|
|
|
RGB565,
|
|
|
|
RGB11F11F10F,
|
|
|
|
RGB16F, // OES_texture_half_float
|
|
|
|
RGB32F, // OES_texture_float
|
|
|
|
// 4-channel formats
|
|
|
|
RGBA8,
|
|
|
|
RGBA5551,
|
|
|
|
RGBA4444,
|
|
|
|
RGBA16F, // OES_texture_half_float
|
|
|
|
RGBA32F, // OES_texture_float
|
|
|
|
// DOM element source only formats.
|
|
|
|
RGBX8,
|
|
|
|
BGRX8,
|
|
|
|
BGRA8
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2013-06-11 00:00:35 +04:00
|
|
|
|
2015-01-26 01:22:07 +03:00
|
|
|
enum class WebGLTexImageFunc : uint8_t {
|
2018-11-30 13:46:48 +03:00
|
|
|
TexImage,
|
|
|
|
TexSubImage,
|
|
|
|
CopyTexImage,
|
|
|
|
CopyTexSubImage,
|
|
|
|
CompTexImage,
|
|
|
|
CompTexSubImage,
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2014-02-21 05:20:28 +04:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
enum class WebGLTexDimensions : uint8_t { Tex2D, Tex3D };
|
2014-10-14 03:42:15 +04:00
|
|
|
|
2014-04-26 06:34:07 +04:00
|
|
|
// Please keep extensions in alphabetic order.
|
2015-01-26 01:22:07 +03:00
|
|
|
enum class WebGLExtensionID : uint8_t {
|
2018-11-30 13:46:48 +03:00
|
|
|
ANGLE_instanced_arrays,
|
|
|
|
EXT_blend_minmax,
|
|
|
|
EXT_color_buffer_float,
|
|
|
|
EXT_color_buffer_half_float,
|
|
|
|
EXT_texture_compression_bptc,
|
|
|
|
EXT_texture_compression_rgtc,
|
|
|
|
EXT_frag_depth,
|
|
|
|
EXT_sRGB,
|
|
|
|
EXT_shader_texture_lod,
|
|
|
|
EXT_texture_filter_anisotropic,
|
|
|
|
EXT_disjoint_timer_query,
|
|
|
|
MOZ_debug,
|
|
|
|
OES_element_index_uint,
|
|
|
|
OES_standard_derivatives,
|
|
|
|
OES_texture_float,
|
|
|
|
OES_texture_float_linear,
|
|
|
|
OES_texture_half_float,
|
|
|
|
OES_texture_half_float_linear,
|
|
|
|
OES_vertex_array_object,
|
|
|
|
WEBGL_color_buffer_float,
|
|
|
|
WEBGL_compressed_texture_astc,
|
|
|
|
WEBGL_compressed_texture_etc,
|
|
|
|
WEBGL_compressed_texture_etc1,
|
|
|
|
WEBGL_compressed_texture_pvrtc,
|
|
|
|
WEBGL_compressed_texture_s3tc,
|
|
|
|
WEBGL_compressed_texture_s3tc_srgb,
|
|
|
|
WEBGL_debug_renderer_info,
|
|
|
|
WEBGL_debug_shaders,
|
|
|
|
WEBGL_depth_texture,
|
|
|
|
WEBGL_draw_buffers,
|
|
|
|
WEBGL_lose_context,
|
|
|
|
Max,
|
|
|
|
Unknown
|
2015-01-26 01:22:07 +03:00
|
|
|
};
|
2014-04-26 06:34:07 +04:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
class UniqueBuffer {
|
|
|
|
// Like UniquePtr<>, but for void* and malloc/calloc/free.
|
|
|
|
void* mBuffer;
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
public:
|
|
|
|
UniqueBuffer() : mBuffer(nullptr) {}
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
MOZ_IMPLICIT UniqueBuffer(void* buffer) : mBuffer(buffer) {}
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
~UniqueBuffer() { free(mBuffer); }
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
UniqueBuffer(UniqueBuffer&& other) {
|
|
|
|
this->mBuffer = other.mBuffer;
|
|
|
|
other.mBuffer = nullptr;
|
|
|
|
}
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
UniqueBuffer& operator=(UniqueBuffer&& other) {
|
|
|
|
free(this->mBuffer);
|
|
|
|
this->mBuffer = other.mBuffer;
|
|
|
|
other.mBuffer = nullptr;
|
|
|
|
return *this;
|
|
|
|
}
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
UniqueBuffer& operator=(void* newBuffer) {
|
|
|
|
free(this->mBuffer);
|
|
|
|
this->mBuffer = newBuffer;
|
|
|
|
return *this;
|
|
|
|
}
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
explicit operator bool() const { return bool(mBuffer); }
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
void* get() const { return mBuffer; }
|
2017-02-10 07:32:58 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
UniqueBuffer(const UniqueBuffer& other) =
|
|
|
|
delete; // construct using std::move()!
|
|
|
|
void operator=(const UniqueBuffer& other) =
|
|
|
|
delete; // assign using std::move()!
|
2017-02-10 07:32:58 +03:00
|
|
|
};
|
|
|
|
|
2018-10-17 07:18:15 +03:00
|
|
|
namespace webgl {
|
|
|
|
struct FormatUsageInfo;
|
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
struct SampleableInfo final {
|
|
|
|
const char* incompleteReason = nullptr;
|
|
|
|
uint32_t levels = 0;
|
|
|
|
const webgl::FormatUsageInfo* usage = nullptr;
|
|
|
|
bool isDepthTexCompare = false;
|
2018-10-17 07:18:15 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
bool IsComplete() const { return bool(levels); }
|
2018-10-17 07:18:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class AttribBaseType : uint8_t {
|
2018-11-30 13:46:48 +03:00
|
|
|
Int,
|
|
|
|
UInt,
|
|
|
|
Float, // Also includes NormU?Int
|
|
|
|
Boolean, // Can convert from anything.
|
2018-10-17 07:18:15 +03:00
|
|
|
};
|
|
|
|
const char* ToString(AttribBaseType);
|
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
} // namespace webgl
|
2018-10-17 07:18:15 +03:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
} // namespace mozilla
|
2013-06-11 00:00:35 +04:00
|
|
|
|
|
|
|
#endif
|