2013-07-17 20:13:38 +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/. */
|
|
|
|
|
|
|
|
#include "WebGLContext.h"
|
|
|
|
#include "WebGLTexture.h"
|
|
|
|
#include "WebGLRenderbuffer.h"
|
|
|
|
#include "WebGLFramebuffer.h"
|
2013-09-04 16:14:52 +04:00
|
|
|
#include "GLContext.h"
|
2015-07-31 22:56:32 +03:00
|
|
|
#include "GLScreenBuffer.h"
|
2013-07-17 20:13:38 +04:00
|
|
|
|
2015-07-15 03:37:28 +03:00
|
|
|
namespace mozilla {
|
2013-07-17 20:13:38 +04:00
|
|
|
|
|
|
|
void
|
2013-09-04 16:14:43 +04:00
|
|
|
WebGLContext::Clear(GLbitfield mask)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2015-12-15 03:11:59 +03:00
|
|
|
const char funcName[] = "clear";
|
|
|
|
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
uint32_t m = mask & (LOCAL_GL_COLOR_BUFFER_BIT | LOCAL_GL_DEPTH_BUFFER_BIT | LOCAL_GL_STENCIL_BUFFER_BIT);
|
|
|
|
if (mask != m)
|
2015-12-15 03:11:59 +03:00
|
|
|
return ErrorInvalidValue("%s: invalid mask bits", funcName);
|
2013-07-17 20:13:38 +04:00
|
|
|
|
2013-08-06 18:40:37 +04:00
|
|
|
if (mask == 0) {
|
|
|
|
GenerateWarning("Calling gl.clear(0) has no effect.");
|
2013-08-23 04:11:40 +04:00
|
|
|
} else if (mRasterizerDiscardEnabled) {
|
|
|
|
GenerateWarning("Calling gl.clear() with RASTERIZER_DISCARD enabled has no effects.");
|
2013-08-06 18:40:37 +04:00
|
|
|
}
|
|
|
|
|
2016-12-21 10:31:22 +03:00
|
|
|
if (mBoundDrawFramebuffer &&
|
|
|
|
!mBoundDrawFramebuffer->ValidateAndInitAttachments(funcName))
|
2014-10-02 04:05:34 +04:00
|
|
|
{
|
2016-12-21 10:31:22 +03:00
|
|
|
return;
|
2014-10-02 04:05:34 +04:00
|
|
|
}
|
2013-07-17 20:13:38 +04:00
|
|
|
|
2016-12-21 10:31:22 +03:00
|
|
|
ScopedDrawCallWrapper wrapper(*this);
|
|
|
|
gl->fClear(mask);
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
2015-02-25 01:09:09 +03:00
|
|
|
static GLfloat
|
|
|
|
GLClampFloat(GLfloat val)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
|
|
|
if (val < 0.0)
|
|
|
|
return 0.0;
|
|
|
|
|
|
|
|
if (val > 1.0)
|
|
|
|
return 1.0;
|
|
|
|
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-02-25 01:09:09 +03:00
|
|
|
WebGLContext::ClearColor(GLfloat r, GLfloat g, GLfloat b, GLfloat a)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
2015-02-25 01:09:09 +03:00
|
|
|
|
2016-05-28 04:55:13 +03:00
|
|
|
const bool supportsFloatColorBuffers = (IsExtensionEnabled(WebGLExtensionID::EXT_color_buffer_float) ||
|
|
|
|
IsExtensionEnabled(WebGLExtensionID::EXT_color_buffer_half_float) ||
|
2015-02-25 01:09:09 +03:00
|
|
|
IsExtensionEnabled(WebGLExtensionID::WEBGL_color_buffer_float));
|
|
|
|
if (!supportsFloatColorBuffers) {
|
|
|
|
r = GLClampFloat(r);
|
|
|
|
g = GLClampFloat(g);
|
|
|
|
b = GLClampFloat(b);
|
|
|
|
a = GLClampFloat(a);
|
|
|
|
}
|
|
|
|
|
2013-07-17 20:13:38 +04:00
|
|
|
gl->fClearColor(r, g, b, a);
|
2015-02-25 01:09:09 +03:00
|
|
|
|
|
|
|
mColorClearValue[0] = r;
|
|
|
|
mColorClearValue[1] = g;
|
|
|
|
mColorClearValue[2] = b;
|
|
|
|
mColorClearValue[3] = a;
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-04 16:14:43 +04:00
|
|
|
WebGLContext::ClearDepth(GLclampf v)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
mDepthClearValue = GLClampFloat(v);
|
2015-08-20 00:50:06 +03:00
|
|
|
gl->fClearDepth(mDepthClearValue);
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-04 16:14:43 +04:00
|
|
|
WebGLContext::ClearStencil(GLint v)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
mStencilClearValue = v;
|
|
|
|
gl->fClearStencil(v);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::ColorMask(WebGLboolean r, WebGLboolean g, WebGLboolean b, WebGLboolean a)
|
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
mColorWriteMask[0] = r;
|
|
|
|
mColorWriteMask[1] = g;
|
|
|
|
mColorWriteMask[2] = b;
|
|
|
|
mColorWriteMask[3] = a;
|
|
|
|
gl->fColorMask(r, g, b, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::DepthMask(WebGLboolean b)
|
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
mDepthWriteMask = b;
|
|
|
|
gl->fDepthMask(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::DrawBuffers(const dom::Sequence<GLenum>& buffers)
|
|
|
|
{
|
2015-11-25 07:15:29 +03:00
|
|
|
const char funcName[] = "drawBuffers";
|
2013-11-21 10:53:00 +04:00
|
|
|
if (IsContextLost())
|
|
|
|
return;
|
|
|
|
|
2016-07-19 10:36:54 +03:00
|
|
|
if (mBoundDrawFramebuffer) {
|
|
|
|
mBoundDrawFramebuffer->DrawBuffers(funcName, buffers);
|
2015-11-25 07:15:29 +03:00
|
|
|
return;
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
2016-07-19 10:36:54 +03:00
|
|
|
// GLES 3.0.4 p186:
|
|
|
|
// "If the GL is bound to the default framebuffer, then `n` must be 1 and the
|
|
|
|
// constant must be BACK or NONE. [...] If DrawBuffers is supplied with a
|
|
|
|
// constant other than BACK and NONE, or with a value of `n` other than 1, the
|
|
|
|
// error INVALID_OPERATION is generated."
|
|
|
|
if (buffers.Length() != 1) {
|
|
|
|
ErrorInvalidOperation("%s: For the default framebuffer, `buffers` must have a"
|
|
|
|
" length of 1.",
|
|
|
|
funcName);
|
2015-11-25 07:15:29 +03:00
|
|
|
return;
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
2016-07-19 10:36:54 +03:00
|
|
|
switch (buffers[0]) {
|
|
|
|
case LOCAL_GL_NONE:
|
|
|
|
case LOCAL_GL_BACK:
|
|
|
|
break;
|
2013-07-17 20:13:38 +04:00
|
|
|
|
2016-07-19 10:36:54 +03:00
|
|
|
default:
|
|
|
|
ErrorInvalidOperation("%s: For the default framebuffer, `buffers[0]` must be"
|
|
|
|
" BACK or NONE.",
|
|
|
|
funcName);
|
|
|
|
return;
|
2015-11-25 07:15:29 +03:00
|
|
|
}
|
|
|
|
|
2016-07-19 10:36:54 +03:00
|
|
|
mDefaultFB_DrawBuffer0 = buffers[0];
|
|
|
|
gl->Screen()->SetDrawBuffer(buffers[0]);
|
2013-07-17 20:13:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-04 16:14:43 +04:00
|
|
|
WebGLContext::StencilMask(GLuint mask)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
mStencilWriteMaskFront = mask;
|
|
|
|
mStencilWriteMaskBack = mask;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilMask(mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-09-04 16:14:43 +04:00
|
|
|
WebGLContext::StencilMaskSeparate(GLenum face, GLuint mask)
|
2013-07-17 20:13:38 +04:00
|
|
|
{
|
2013-09-04 16:14:44 +04:00
|
|
|
if (IsContextLost())
|
2013-07-17 20:13:38 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!ValidateFaceEnum(face, "stencilMaskSeparate: face"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (face) {
|
|
|
|
case LOCAL_GL_FRONT_AND_BACK:
|
|
|
|
mStencilWriteMaskFront = mask;
|
|
|
|
mStencilWriteMaskBack = mask;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_FRONT:
|
|
|
|
mStencilWriteMaskFront = mask;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_BACK:
|
|
|
|
mStencilWriteMaskBack = mask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilMaskSeparate(face, mask);
|
|
|
|
}
|
|
|
|
|
2015-07-15 03:37:28 +03:00
|
|
|
} // namespace mozilla
|