2009-09-02 17:47:49 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2009-09-17 23:01:12 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Mozilla Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com> (original author)
|
|
|
|
* Mark Steele <mwsteele@gmail.com>
|
2010-05-15 06:55:45 -07:00
|
|
|
* Cedric Vivier <cedricv@neonux.com>
|
2009-09-17 23:01:12 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
#include "WebGLContext.h"
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
|
|
|
|
#include "gfxImageSurface.h"
|
|
|
|
#include "gfxContext.h"
|
|
|
|
#include "gfxPlatform.h"
|
|
|
|
//#include "nsIDOMHTMLCanvasElement.h"
|
|
|
|
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDOMError.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
|
|
|
|
|
|
|
#include "CanvasUtils.h"
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
#include "jstypedarray.h"
|
|
|
|
|
2010-08-09 23:51:56 -07:00
|
|
|
#if defined(USE_ANGLE)
|
2010-07-14 20:52:34 -07:00
|
|
|
// shader translator
|
|
|
|
#include "angle/ShaderLang.h"
|
|
|
|
#endif
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
static PRBool BaseTypeAndSizeFromUniformType(WebGLenum uType, WebGLenum *baseType, WebGLint *unitSize);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
/* Helper macros for when we're just wrapping a gl method, so that
|
|
|
|
* we can avoid having to type this 500 times. Note that these MUST
|
|
|
|
* NOT BE USED if we need to check any of the parameters.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_0(glname, name) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name() { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_1(glname, name, t1) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_2(glname, name, t1, t2) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1, t2 a2) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1,a2); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_3(glname, name, t1, t2, t3) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1, t2 a2, t3 a3) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1,a2,a3); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_4(glname, name, t1, t2, t3, t4) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1, t2 a2, t3 a3, t4 a4) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1,a2,a3,a4); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_5(glname, name, t1, t2, t3, t4, t5) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1,a2,a3,a4,a5); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GL_SAME_METHOD_6(glname, name, t1, t2, t3, t4, t5, t6) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5, t6 a6) { \
|
|
|
|
MakeContextCurrent(); gl->f##glname(a1,a2,a3,a4,a5,a6); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
2010-08-30 16:56:32 -07:00
|
|
|
already_AddRefed<WebGLUniformLocation>
|
|
|
|
WebGLProgram::GetUniformLocationObject(GLint glLocation)
|
2010-06-08 14:25:27 -07:00
|
|
|
{
|
|
|
|
WebGLUniformLocation *existingLocationObject;
|
|
|
|
if (mMapUniformLocations.Get(glLocation, &existingLocationObject)) {
|
|
|
|
return existingLocationObject;
|
|
|
|
}
|
2010-08-30 16:56:32 -07:00
|
|
|
|
|
|
|
if (glLocation < 0) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<WebGLUniformLocation> loc = new WebGLUniformLocation(mContext, this, glLocation);
|
|
|
|
mMapUniformLocations.Put(glLocation, loc);
|
|
|
|
return loc.forget();
|
2010-06-08 14:25:27 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
//
|
|
|
|
// WebGL API
|
|
|
|
//
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
|
|
|
|
/* void present (); */
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::Present()
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
/* void GlActiveTexture (in GLenum texture); */
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::ActiveTexture(WebGLenum texture)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
if (texture < LOCAL_GL_TEXTURE0 || texture >= LOCAL_GL_TEXTURE0+mBound2DTextures.Length())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidEnum("ActiveTexture: texture unit %d out of range (0..%d)",
|
|
|
|
texture, mBound2DTextures.Length()-1);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
mActiveTexture = texture - LOCAL_GL_TEXTURE0;
|
|
|
|
gl->fActiveTexture(texture);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::AttachShader(nsIWebGLProgram *pobj, nsIWebGLShader *shobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-09-13 08:57:25 -07:00
|
|
|
// if pobj or shobj are null/not specified, it's an error
|
|
|
|
if (pobj == nsnull || shobj == nsnull)
|
|
|
|
return ErrorInvalidValue("attachShader");
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname, shadername;
|
2010-06-04 12:03:33 -07:00
|
|
|
WebGLProgram *program;
|
|
|
|
WebGLShader *shader;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("attachShader: program", pobj, &program, &progname) ||
|
|
|
|
!GetConcreteObjectAndGLName("attachShader: shader", shobj, &shader, &shadername))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
if (!program->AttachShader(shader))
|
|
|
|
return ErrorInvalidOperation("AttachShader: shader is already attached");
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fAttachShader(progname, shadername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BindAttribLocation(nsIWebGLProgram *pobj, WebGLuint location, const nsAString& name)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("bindAttribLocation: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
if (name.IsEmpty())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("BindAttribLocation: name can't be null or empty");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fBindAttribLocation(progname, location, NS_LossyConvertUTF16toASCII(name).get());
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BindBuffer(WebGLenum target, nsIWebGLBuffer *bobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint bufname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLBuffer* buf;
|
|
|
|
PRBool isNull;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("bindBuffer", bobj, &buf, &bufname, &isNull))
|
|
|
|
return NS_OK;
|
2009-12-06 16:07:58 -08:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
2010-05-19 13:46:08 -07:00
|
|
|
mBoundArrayBuffer = buf;
|
2009-09-02 17:47:49 -07:00
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
2010-05-19 13:46:08 -07:00
|
|
|
mBoundElementArrayBuffer = buf;
|
2009-09-02 17:47:49 -07:00
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("BindBuffer: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
if (!isNull) {
|
|
|
|
if ((buf->Target() != LOCAL_GL_NONE) && (target != buf->Target()))
|
|
|
|
return ErrorInvalidOperation("BindBuffer: buffer already bound to a different target");
|
|
|
|
buf->SetTarget(target);
|
|
|
|
}
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
gl->fBindBuffer(target, bufname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BindFramebuffer(WebGLenum target, nsIWebGLFramebuffer *fbobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint framebuffername;
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isNull;
|
2010-05-15 05:07:30 -07:00
|
|
|
WebGLFramebuffer *wfb;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
2010-09-02 07:38:26 -07:00
|
|
|
return ErrorInvalidEnum("BindFramebuffer: target must be GL_FRAMEBUFFER");
|
2010-05-15 05:07:30 -07:00
|
|
|
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("bindFramebuffer", fbobj, &wfb, &framebuffername, &isNull))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (isNull) {
|
|
|
|
gl->fBindFramebuffer(target, gl->GetOffscreenFBO());
|
|
|
|
} else {
|
|
|
|
gl->fBindFramebuffer(target, framebuffername);
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
mBoundFramebuffer = wfb;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BindRenderbuffer(WebGLenum target, nsIWebGLRenderbuffer *rbobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint renderbuffername;
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isNull;
|
2010-05-15 05:07:30 -07:00
|
|
|
WebGLRenderbuffer *wrb;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
if (target != LOCAL_GL_RENDERBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bindRenderbuffer: target", target);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("bindRenderBuffer", rbobj, &wrb, &renderbuffername, &isNull))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fBindRenderbuffer(target, renderbuffername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
mBoundRenderbuffer = wrb;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BindTexture(WebGLenum target, nsIWebGLTexture *tobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint texturename;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLTexture *tex;
|
2010-08-23 14:03:53 -07:00
|
|
|
PRBool isNull; // allow null object
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("bindTexture", tobj, &tex, &texturename, &isNull))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (target == LOCAL_GL_TEXTURE_2D) {
|
2010-05-19 13:46:08 -07:00
|
|
|
mBound2DTextures[mActiveTexture] = tex;
|
2009-09-02 17:47:49 -07:00
|
|
|
} else if (target == LOCAL_GL_TEXTURE_CUBE_MAP) {
|
2010-05-19 13:46:08 -07:00
|
|
|
mBoundCubeMapTextures[mActiveTexture] = tex;
|
2009-09-02 17:47:49 -07:00
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bindTexture: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
if (tex)
|
|
|
|
tex->Bind(target);
|
|
|
|
else
|
|
|
|
gl->fBindTexture(target, 0 /* == texturename */);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_4(BlendColor, BlendColor, WebGLfloat, WebGLfloat, WebGLfloat, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 07:48:44 -07:00
|
|
|
NS_IMETHODIMP WebGLContext::BlendEquation(WebGLenum mode)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateBlendEquationEnum(mode, "blendEquation: mode"))
|
|
|
|
return NS_OK;
|
2010-06-19 07:48:44 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fBlendEquation(mode);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 07:48:44 -07:00
|
|
|
NS_IMETHODIMP WebGLContext::BlendEquationSeparate(WebGLenum modeRGB, WebGLenum modeAlpha)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateBlendEquationEnum(modeRGB, "blendEquationSeparate: modeRGB") ||
|
|
|
|
!ValidateBlendEquationEnum(modeAlpha, "blendEquationSeparate: modeAlpha"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 07:48:44 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fBlendEquationSeparate(modeRGB, modeAlpha);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP WebGLContext::BlendFunc(WebGLenum sfactor, WebGLenum dfactor)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateBlendFuncSrcEnum(sfactor, "blendFunc: sfactor") ||
|
|
|
|
!ValidateBlendFuncDstEnum(dfactor, "blendFunc: dfactor"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 07:48:44 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fBlendFunc(sfactor, dfactor);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::BlendFuncSeparate(WebGLenum srcRGB, WebGLenum dstRGB,
|
|
|
|
WebGLenum srcAlpha, WebGLenum dstAlpha)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateBlendFuncSrcEnum(srcRGB, "blendFuncSeparate: srcRGB") ||
|
|
|
|
!ValidateBlendFuncSrcEnum(srcAlpha, "blendFuncSeparate: srcAlpha") ||
|
|
|
|
!ValidateBlendFuncDstEnum(dstRGB, "blendFuncSeparate: dstRGB") ||
|
|
|
|
!ValidateBlendFuncDstEnum(dstAlpha, "blendFuncSeparate: dstAlpha"))
|
|
|
|
return NS_OK;
|
2010-06-19 07:48:44 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fBlendFuncSeparate(srcRGB, dstRGB, srcAlpha, dstAlpha);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-01-22 13:34:25 -08:00
|
|
|
WebGLContext::BufferData(PRInt32 dummy)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-01-22 13:34:25 -08:00
|
|
|
// this should never be called
|
|
|
|
LogMessage("BufferData");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BufferData_size(WebGLenum target, WebGLsizei size, WebGLenum usage)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
2009-09-02 17:47:49 -07:00
|
|
|
WebGLBuffer *boundBuffer = NULL;
|
|
|
|
|
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundArrayBuffer;
|
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundElementArrayBuffer;
|
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bufferData: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-07-03 15:34:07 -07:00
|
|
|
if (size < 0)
|
|
|
|
return ErrorInvalidValue("bufferData: negative size");
|
|
|
|
|
|
|
|
if (!ValidateBufferUsageEnum(usage, "bufferData: usage"))
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!boundBuffer)
|
|
|
|
return ErrorInvalidOperation("BufferData: no buffer bound!");
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
boundBuffer->SetByteLength(size);
|
2010-06-01 23:09:18 -07:00
|
|
|
boundBuffer->ZeroDataIfElementArray();
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
gl->fBufferData(target, size, 0, usage);
|
2009-10-29 23:01:06 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BufferData_buf(WebGLenum target, js::ArrayBuffer *wb, WebGLenum usage)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
|
|
|
WebGLBuffer *boundBuffer = NULL;
|
|
|
|
|
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundArrayBuffer;
|
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundElementArrayBuffer;
|
2009-11-01 16:33:39 -08:00
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bufferData: target", target);
|
2009-11-01 16:33:39 -08:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:34:07 -07:00
|
|
|
if (!ValidateBufferUsageEnum(usage, "bufferData: usage"))
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!boundBuffer)
|
|
|
|
return ErrorInvalidOperation("BufferData: no buffer bound!");
|
2010-01-22 13:34:25 -08:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
boundBuffer->SetByteLength(wb->byteLength);
|
2010-06-01 23:09:18 -07:00
|
|
|
boundBuffer->CopyDataIfElementArray(wb->data);
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
gl->fBufferData(target, wb->byteLength, wb->data, usage);
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::BufferData_array(WebGLenum target, js::TypedArray *wa, WebGLenum usage)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-01-22 13:34:25 -08:00
|
|
|
WebGLBuffer *boundBuffer = NULL;
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundArrayBuffer;
|
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundElementArrayBuffer;
|
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bufferData: target", target);
|
2010-01-22 13:34:25 -08:00
|
|
|
}
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-07-03 15:34:07 -07:00
|
|
|
if (!ValidateBufferUsageEnum(usage, "bufferData: usage"))
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!boundBuffer)
|
|
|
|
return ErrorInvalidOperation("BufferData: no buffer bound!");
|
2010-01-22 13:34:25 -08:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
boundBuffer->SetByteLength(wa->byteLength);
|
2010-06-01 23:09:18 -07:00
|
|
|
boundBuffer->CopyDataIfElementArray(wa->data);
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
gl->fBufferData(target, wa->byteLength, wa->data, usage);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::BufferSubData(PRInt32 dummy)
|
|
|
|
{
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-01 23:09:18 -07:00
|
|
|
WebGLContext::BufferSubData_buf(GLenum target, WebGLsizei byteOffset, js::ArrayBuffer *wb)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
2009-09-02 17:47:49 -07:00
|
|
|
WebGLBuffer *boundBuffer = NULL;
|
|
|
|
|
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundArrayBuffer;
|
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundElementArrayBuffer;
|
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bufferSubData: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!boundBuffer)
|
|
|
|
return ErrorInvalidOperation("BufferData: no buffer bound!");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_neededByteLength = CheckedUint32(byteOffset) + wb->byteLength;
|
|
|
|
if (!checked_neededByteLength.valid())
|
|
|
|
return ErrorInvalidOperation("bufferSubData: integer overflow computing the needed byte length");
|
|
|
|
|
|
|
|
if (checked_neededByteLength.value() > boundBuffer->ByteLength())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidOperation("BufferSubData: not enough data - operation requires %d bytes, but buffer only has %d bytes",
|
2010-06-01 23:09:18 -07:00
|
|
|
byteOffset, wb->byteLength, boundBuffer->ByteLength());
|
2009-11-01 16:33:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
MakeContextCurrent();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
boundBuffer->CopySubDataIfElementArray(byteOffset, wb->byteLength, wb->data);
|
|
|
|
|
|
|
|
gl->fBufferSubData(target, byteOffset, wb->byteLength, wb->data);
|
2009-10-30 01:09:24 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-01 23:09:18 -07:00
|
|
|
WebGLContext::BufferSubData_array(WebGLenum target, WebGLsizei byteOffset, js::TypedArray *wa)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
|
|
|
WebGLBuffer *boundBuffer = NULL;
|
|
|
|
|
|
|
|
if (target == LOCAL_GL_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundArrayBuffer;
|
|
|
|
} else if (target == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
boundBuffer = mBoundElementArrayBuffer;
|
2009-11-01 16:33:39 -08:00
|
|
|
} else {
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("bufferSubData: target", target);
|
2009-11-01 16:33:39 -08:00
|
|
|
}
|
2009-10-30 01:09:24 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!boundBuffer)
|
|
|
|
return ErrorInvalidOperation("BufferData: no buffer bound!");
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_neededByteLength = CheckedUint32(byteOffset) + wa->byteLength;
|
|
|
|
if (!checked_neededByteLength.valid())
|
|
|
|
return ErrorInvalidOperation("bufferSubData: integer overflow computing the needed byte length");
|
|
|
|
|
|
|
|
if (checked_neededByteLength.value() > boundBuffer->ByteLength())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidOperation("BufferSubData: not enough data -- operation requires %d bytes, but buffer only has %d bytes",
|
2010-06-01 23:09:18 -07:00
|
|
|
byteOffset, wa->byteLength, boundBuffer->ByteLength());
|
2010-01-22 13:34:25 -08:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
boundBuffer->CopySubDataIfElementArray(byteOffset, wa->byteLength, wa->data);
|
|
|
|
|
|
|
|
gl->fBufferSubData(target, byteOffset, wa->byteLength, wa->data);
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::CheckFramebufferStatus(WebGLenum target, WebGLenum *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
2010-07-18 22:01:14 -07:00
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
|
|
|
return ErrorInvalidEnum("CheckFramebufferStatus: target must be FRAMEBUFFER");
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
*retval = gl->fCheckFramebufferStatus(target);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-01 16:33:39 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::Clear(PRUint32 mask)
|
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fClear(mask);
|
|
|
|
Invalidate();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_4(ClearColor, ClearColor, WebGLfloat, WebGLfloat, WebGLfloat, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_1(ClearDepth, ClearDepth, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_1(ClearStencil, ClearStencil, WebGLint)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
GL_SAME_METHOD_4(ColorMask, ColorMask, WebGLboolean, WebGLboolean, WebGLboolean, WebGLboolean)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::CopyTexImage2D(WebGLenum target,
|
|
|
|
WebGLint level,
|
|
|
|
WebGLenum internalformat,
|
|
|
|
WebGLint x,
|
|
|
|
WebGLint y,
|
|
|
|
WebGLsizei width,
|
|
|
|
WebGLsizei height,
|
|
|
|
WebGLint border)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
switch (target) {
|
|
|
|
case LOCAL_GL_TEXTURE_2D:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("copyTexImage2D: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (internalformat) {
|
|
|
|
case LOCAL_GL_RGB:
|
|
|
|
case LOCAL_GL_RGBA:
|
|
|
|
case LOCAL_GL_ALPHA:
|
|
|
|
case LOCAL_GL_LUMINANCE:
|
|
|
|
case LOCAL_GL_LUMINANCE_ALPHA:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("CopyTexImage2D: internal format", internalformat);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
if (border != 0)
|
|
|
|
return ErrorInvalidValue("copyTexImage2D: border must be 0");
|
|
|
|
|
|
|
|
if (level < 0)
|
|
|
|
return ErrorInvalidValue("copyTexImage2D: level may not be negative");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-09-02 07:28:38 -07:00
|
|
|
if (level >= 1) {
|
|
|
|
if (!(is_pot_assuming_nonnegative(width) &&
|
|
|
|
is_pot_assuming_nonnegative(height)))
|
|
|
|
return ErrorInvalidValue("copyTexImage2D: with level > 0, width and height must be powers of two");
|
|
|
|
}
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!CanvasUtils::CheckSaneSubrectSize(x,y,width, height, mWidth, mHeight))
|
|
|
|
return ErrorInvalidOperation("CopyTexImage2D: copied rectangle out of bounds");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
WebGLTexture *tex = activeBoundTextureForTarget(target);
|
|
|
|
if (!tex)
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidOperation("copyTexImage2D: no texture bound to this target");
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetImageInfo(target, level, width, height);
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
gl->fCopyTexImage2D(target, level, internalformat, x, y, width, height, border);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::CopyTexSubImage2D(WebGLenum target,
|
|
|
|
WebGLint level,
|
|
|
|
WebGLint xoffset,
|
|
|
|
WebGLint yoffset,
|
|
|
|
WebGLint x,
|
|
|
|
WebGLint y,
|
|
|
|
WebGLsizei width,
|
|
|
|
WebGLsizei height)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
switch (target) {
|
|
|
|
case LOCAL_GL_TEXTURE_2D:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("CopyTexSubImage2D: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (!CanvasUtils::CheckSaneSubrectSize(x,y,width, height, mWidth, mHeight))
|
|
|
|
return ErrorInvalidOperation("CopyTexSubImage2D: copied rectangle out of bounds");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
gl->fCopyTexSubImage2D(target, level, xoffset, yoffset, x, y, width, height);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::CreateProgram(nsIWebGLProgram **retval)
|
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint name = gl->fCreateProgram();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLProgram *prog = new WebGLProgram(this, name);
|
|
|
|
NS_ADDREF(*retval = prog);
|
|
|
|
mMapPrograms.Put(name, prog);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::CreateShader(WebGLenum type, nsIWebGLShader **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
if (type != LOCAL_GL_VERTEX_SHADER &&
|
|
|
|
type != LOCAL_GL_FRAGMENT_SHADER)
|
|
|
|
{
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("createShader: type", type);
|
2010-06-04 12:03:33 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint name = gl->fCreateShader(type);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLShader *shader = new WebGLShader(this, name, type);
|
2010-06-04 12:03:33 -07:00
|
|
|
NS_ADDREF(*retval = shader);
|
|
|
|
mMapShaders.Put(name, shader);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::CullFace(WebGLenum face)
|
|
|
|
{
|
|
|
|
if (!ValidateFaceEnum(face, "cullFace"))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fCullFace(face);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteBuffer(nsIWebGLBuffer *bobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint bufname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLBuffer *buf;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteBuffer", bobj, &buf, &bufname, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteBuffers(1, &bufname);
|
|
|
|
buf->Delete();
|
|
|
|
mMapBuffers.Remove(bufname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteFramebuffer(nsIWebGLFramebuffer *fbobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint fbufname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLFramebuffer *fbuf;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteFramebuffer", fbobj, &fbuf, &fbufname, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteFramebuffers(1, &fbufname);
|
|
|
|
fbuf->Delete();
|
|
|
|
mMapFramebuffers.Remove(fbufname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteRenderbuffer(nsIWebGLRenderbuffer *rbobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint rbufname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLRenderbuffer *rbuf;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteRenderbuffer", rbobj, &rbuf, &rbufname, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
// XXX we need to track renderbuffer attachments; from glDeleteRenderbuffers man page:
|
|
|
|
|
|
|
|
/*
|
|
|
|
If a renderbuffer object that is currently bound is deleted, the binding reverts
|
|
|
|
to 0 (the absence of any renderbuffer object). Additionally, special care
|
|
|
|
must be taken when deleting a renderbuffer object if the image of the renderbuffer
|
|
|
|
is attached to a framebuffer object. In this case, if the deleted renderbuffer object is
|
|
|
|
attached to the currently bound framebuffer object, it is
|
|
|
|
automatically detached. However, attachments to any other framebuffer objects are the
|
|
|
|
responsibility of the application.
|
2010-05-19 13:46:08 -07:00
|
|
|
*/
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteRenderbuffers(1, &rbufname);
|
|
|
|
rbuf->Delete();
|
|
|
|
mMapRenderbuffers.Remove(rbufname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteTexture(nsIWebGLTexture *tobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint texname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLTexture *tex;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteTexture", tobj, &tex, &texname, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteTextures(1, &texname);
|
|
|
|
tex->Delete();
|
|
|
|
mMapTextures.Remove(texname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteProgram(nsIWebGLProgram *pobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLProgram *prog;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteProgram", pobj, &prog, &progname, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteProgram(progname);
|
|
|
|
prog->Delete();
|
|
|
|
mMapPrograms.Remove(progname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DeleteShader(nsIWebGLShader *sobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLShader *shader;
|
|
|
|
PRBool isNull, isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("deleteShader", sobj, &shader, &shadername, &isNull, &isDeleted))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (isNull || isDeleted)
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fDeleteShader(shadername);
|
|
|
|
shader->Delete();
|
|
|
|
mMapShaders.Remove(shadername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::DetachShader(nsIWebGLProgram *pobj, nsIWebGLShader *shobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-06-04 12:03:33 -07:00
|
|
|
WebGLuint progname, shadername;
|
|
|
|
WebGLProgram *program;
|
|
|
|
WebGLShader *shader;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("detachShader: program", pobj, &program, &progname) ||
|
|
|
|
!GetConcreteObjectAndGLName("detachShader: shader", shobj, &shader, &shadername))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
if (!program->DetachShader(shader))
|
|
|
|
return ErrorInvalidOperation("DetachShader: shader is not attached");
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
gl->fDetachShader(progname, shadername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::DepthFunc(WebGLenum func)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateComparisonEnum(func, "depthFunc"))
|
|
|
|
return NS_OK;
|
2010-06-30 08:48:30 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fDepthFunc(func);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
GL_SAME_METHOD_1(DepthMask, DepthMask, WebGLboolean)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_2(DepthRange, DepthRange, WebGLfloat, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::DisableVertexAttribArray(WebGLuint index)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
if (index > mAttribBuffers.Length())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("DisableVertexAttribArray: index out of range");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-09-02 07:34:08 -07:00
|
|
|
if (index || gl->IsGLES2())
|
|
|
|
gl->fDisableVertexAttribArray(index);
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
mAttribBuffers[index].enabled = PR_FALSE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-02 07:34:08 -07:00
|
|
|
PRBool
|
|
|
|
WebGLContext::NeedFakeVertexAttrib0()
|
|
|
|
{
|
|
|
|
return !gl->IsGLES2() &&
|
|
|
|
!mAttribBuffers[0].enabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::DoFakeVertexAttrib0(WebGLuint vertexCount)
|
|
|
|
{
|
|
|
|
if (!NeedFakeVertexAttrib0())
|
|
|
|
return;
|
|
|
|
|
|
|
|
mFakeVertexAttrib0Array = new WebGLfloat[4 * vertexCount];
|
|
|
|
|
|
|
|
for(size_t i = 0; i < vertexCount; ++i) {
|
|
|
|
mFakeVertexAttrib0Array[4 * i + 0] = mVertexAttrib0Vector[0];
|
|
|
|
mFakeVertexAttrib0Array[4 * i + 1] = mVertexAttrib0Vector[1];
|
|
|
|
mFakeVertexAttrib0Array[4 * i + 2] = mVertexAttrib0Vector[2];
|
|
|
|
mFakeVertexAttrib0Array[4 * i + 3] = mVertexAttrib0Vector[3];
|
|
|
|
}
|
|
|
|
|
2010-09-05 14:27:04 -07:00
|
|
|
gl->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, 0);
|
2010-09-02 07:34:08 -07:00
|
|
|
gl->fVertexAttribPointer(0, 4, LOCAL_GL_FLOAT, LOCAL_GL_FALSE, 0, mFakeVertexAttrib0Array);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::UndoFakeVertexAttrib0()
|
|
|
|
{
|
|
|
|
if (!NeedFakeVertexAttrib0())
|
|
|
|
return;
|
|
|
|
|
|
|
|
mFakeVertexAttrib0Array = nsnull;
|
|
|
|
|
2010-09-05 14:27:04 -07:00
|
|
|
// first set the bound buffer as needed for subsequent gl->fVertexAttribPointer call.
|
|
|
|
// since in DoFakeVertexAttrib0() we called bindBuffer on buffer zero, we only need to do that if
|
|
|
|
// we have a nonzero buffer binding for this attrib.
|
|
|
|
if (mAttribBuffers[0].buf)
|
|
|
|
gl->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, mAttribBuffers[0].buf->GLName());
|
|
|
|
|
2010-09-02 07:34:08 -07:00
|
|
|
gl->fVertexAttribPointer(0,
|
|
|
|
mAttribBuffers[0].size,
|
|
|
|
mAttribBuffers[0].type,
|
|
|
|
mAttribBuffers[0].normalized,
|
|
|
|
mAttribBuffers[0].stride,
|
|
|
|
(const GLvoid *) mAttribBuffers[0].byteOffset);
|
2010-09-05 14:27:04 -07:00
|
|
|
|
|
|
|
// now restore the bound buffer to its state before we did this whole draw call business
|
|
|
|
gl->fBindBuffer(LOCAL_GL_ARRAY_BUFFER, mBoundArrayBuffer ? mBoundArrayBuffer->GLName() : 0);
|
2010-09-02 07:34:08 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
PRBool
|
|
|
|
WebGLContext::NeedFakeBlack()
|
|
|
|
{
|
|
|
|
// handle this case first, it's the generic case
|
|
|
|
if (mFakeBlackStatus == DoNotNeedFakeBlack)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
if (mFakeBlackStatus == DontKnowIfNeedFakeBlack) {
|
|
|
|
for (PRInt32 i = 0; i < mGLMaxTextureImageUnits; ++i) {
|
|
|
|
if ((mBound2DTextures[i] && mBound2DTextures[i]->NeedFakeBlack()) ||
|
|
|
|
(mBoundCubeMapTextures[i] && mBoundCubeMapTextures[i]->NeedFakeBlack()))
|
|
|
|
{
|
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have exhausted all cases where we do need fakeblack, so if the status is still unknown,
|
|
|
|
// that means that we do NOT need it.
|
|
|
|
if (mFakeBlackStatus == DontKnowIfNeedFakeBlack)
|
|
|
|
mFakeBlackStatus = DoNotNeedFakeBlack;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mFakeBlackStatus == DoNeedFakeBlack;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::BindFakeBlackTextures()
|
|
|
|
{
|
|
|
|
// this is the generic case: try to return early
|
|
|
|
if (!NeedFakeBlack())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!mBlackTexturesAreInitialized) {
|
|
|
|
const PRUint8 black[] = {0, 0, 0, 255};
|
|
|
|
|
|
|
|
gl->fGenTextures(1, &mBlackTexture2D);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_2D, mBlackTexture2D);
|
|
|
|
gl->fTexImage2D(LOCAL_GL_TEXTURE_2D, 0, LOCAL_GL_RGBA, 1, 1,
|
|
|
|
0, LOCAL_GL_RGBA, LOCAL_GL_UNSIGNED_BYTE, &black);
|
|
|
|
|
|
|
|
gl->fGenTextures(1, &mBlackTextureCubeMap);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_CUBE_MAP, mBlackTextureCubeMap);
|
|
|
|
for (WebGLuint i = 0; i < 6; ++i) {
|
|
|
|
gl->fTexImage2D(LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X + i, 0, LOCAL_GL_RGBA, 1, 1,
|
|
|
|
0, LOCAL_GL_RGBA, LOCAL_GL_UNSIGNED_BYTE, &black);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return the texture bindings to the 0 texture to prevent the user from modifying our black textures
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_2D, 0);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_CUBE_MAP, 0);
|
|
|
|
|
|
|
|
mBlackTexturesAreInitialized = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (PRInt32 i = 0; i < mGLMaxTextureImageUnits; ++i) {
|
|
|
|
if (mBound2DTextures[i] && mBound2DTextures[i]->NeedFakeBlack()) {
|
|
|
|
gl->fActiveTexture(LOCAL_GL_TEXTURE0 + i);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_2D, mBlackTexture2D);
|
|
|
|
}
|
|
|
|
if (mBoundCubeMapTextures[i] && mBoundCubeMapTextures[i]->NeedFakeBlack()) {
|
|
|
|
gl->fActiveTexture(LOCAL_GL_TEXTURE0 + i);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_CUBE_MAP, mBlackTextureCubeMap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLContext::UnbindFakeBlackTextures()
|
|
|
|
{
|
|
|
|
// this is the generic case: try to return early
|
|
|
|
if (!NeedFakeBlack())
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (PRInt32 i = 0; i < mGLMaxTextureImageUnits; ++i) {
|
|
|
|
if (mBound2DTextures[i] && mBound2DTextures[i]->NeedFakeBlack()) {
|
|
|
|
gl->fActiveTexture(LOCAL_GL_TEXTURE0 + i);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_2D, mBound2DTextures[i]->GLName());
|
|
|
|
}
|
|
|
|
if (mBoundCubeMapTextures[i] && mBoundCubeMapTextures[i]->NeedFakeBlack()) {
|
|
|
|
gl->fActiveTexture(LOCAL_GL_TEXTURE0 + i);
|
|
|
|
gl->fBindTexture(LOCAL_GL_TEXTURE_CUBE_MAP, mBoundCubeMapTextures[i]->GLName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gl->fActiveTexture(LOCAL_GL_TEXTURE0 + mActiveTexture);
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-01 23:09:18 -07:00
|
|
|
WebGLContext::DrawArrays(GLenum mode, WebGLint first, WebGLsizei count)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-16 07:31:48 -07:00
|
|
|
if (!ValidateDrawModeEnum(mode, "drawArrays: mode"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-08 15:14:43 -07:00
|
|
|
if (first < 0 || count < 0)
|
|
|
|
return ErrorInvalidValue("DrawArrays: negative first or count");
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
// If there is no current program, this is silently ignored.
|
|
|
|
// Any checks below this depend on a program being available.
|
|
|
|
if (!mCurrentProgram)
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedInt32 checked_firstPlusCount = CheckedInt32(first) + count;
|
|
|
|
|
|
|
|
if (!checked_firstPlusCount.valid())
|
|
|
|
return ErrorInvalidOperation("drawArrays: overflow in first+count");
|
2010-06-08 15:14:43 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (!ValidateBuffers(checked_firstPlusCount.value()))
|
2010-07-16 07:30:31 -07:00
|
|
|
return ErrorInvalidOperation("DrawArrays: bound vertex attribute buffers do not have sufficient size for given first and count");
|
|
|
|
|
|
|
|
// If count is 0, there's nothing to do.
|
|
|
|
if (count == 0)
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
BindFakeBlackTextures();
|
2010-09-02 07:34:08 -07:00
|
|
|
DoFakeVertexAttrib0(checked_firstPlusCount.value());
|
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
gl->fDrawArrays(mode, first, count);
|
2010-09-02 07:34:08 -07:00
|
|
|
|
|
|
|
UndoFakeVertexAttrib0();
|
2010-08-23 14:03:53 -07:00
|
|
|
UnbindFakeBlackTextures();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-08 15:14:43 -07:00
|
|
|
WebGLContext::DrawElements(WebGLenum mode, WebGLsizei count, WebGLenum type, WebGLint byteOffset)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-16 07:31:48 -07:00
|
|
|
if (!ValidateDrawModeEnum(mode, "drawElements: mode"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-08 15:14:43 -07:00
|
|
|
if (count < 0 || byteOffset < 0)
|
|
|
|
return ErrorInvalidValue("DrawElements: negative count or offset");
|
2009-12-06 16:07:56 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_byteCount;
|
2009-12-06 16:07:56 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (type == LOCAL_GL_UNSIGNED_SHORT) {
|
|
|
|
checked_byteCount = 2 * CheckedUint32(count);
|
2010-06-08 15:14:43 -07:00
|
|
|
if (byteOffset % 2 != 0)
|
|
|
|
return ErrorInvalidValue("DrawElements: invalid byteOffset for UNSIGNED_SHORT (must be a multiple of 2)");
|
|
|
|
} else if (type == LOCAL_GL_UNSIGNED_BYTE) {
|
2010-07-03 15:32:19 -07:00
|
|
|
checked_byteCount = count;
|
2010-06-08 15:14:43 -07:00
|
|
|
} else {
|
|
|
|
return ErrorInvalidEnum("DrawElements: type must be UNSIGNED_SHORT or UNSIGNED_BYTE");
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (!checked_byteCount.valid())
|
|
|
|
return ErrorInvalidValue("DrawElements: overflow in byteCount");
|
|
|
|
|
2010-06-08 15:14:43 -07:00
|
|
|
// If there is no current program, this is silently ignored.
|
|
|
|
// Any checks below this depend on a program being available.
|
|
|
|
if (!mCurrentProgram)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
if (!mBoundElementArrayBuffer)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidOperation("DrawElements: must have element array buffer binding");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_neededByteCount = checked_byteCount + byteOffset;
|
|
|
|
|
|
|
|
if (!checked_neededByteCount.valid())
|
2010-06-08 15:14:43 -07:00
|
|
|
return ErrorInvalidOperation("DrawElements: overflow in byteOffset+byteCount");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (checked_neededByteCount.value() > mBoundElementArrayBuffer->ByteLength())
|
2010-06-01 23:09:18 -07:00
|
|
|
return ErrorInvalidOperation("DrawElements: bound element array buffer is too small for given count and offset");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
WebGLuint maxIndex = 0;
|
2010-06-08 15:14:43 -07:00
|
|
|
if (type == LOCAL_GL_UNSIGNED_SHORT) {
|
2010-06-01 23:09:18 -07:00
|
|
|
maxIndex = mBoundElementArrayBuffer->FindMaximum<GLushort>(count, byteOffset);
|
2010-06-08 15:14:43 -07:00
|
|
|
} else if (type == LOCAL_GL_UNSIGNED_BYTE) {
|
2010-06-01 23:09:18 -07:00
|
|
|
maxIndex = mBoundElementArrayBuffer->FindMaximum<GLubyte>(count, byteOffset);
|
2010-06-08 15:14:43 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
// maxIndex+1 because ValidateBuffers expects the number of elements needed.
|
|
|
|
// it is very important here to check tha maxIndex+1 doesn't overflow, otherwise the buffer validation is bypassed !!!
|
|
|
|
// maxIndex is a WebGLuint, ValidateBuffers takes a PRUint32, we validate maxIndex+1 as a PRUint32.
|
|
|
|
CheckedUint32 checked_neededCount = CheckedUint32(maxIndex) + 1;
|
|
|
|
if (!checked_neededCount.valid())
|
|
|
|
return ErrorInvalidOperation("drawElements: overflow in maxIndex+1");
|
|
|
|
if (!ValidateBuffers(checked_neededCount.value())) {
|
2010-06-01 23:09:18 -07:00
|
|
|
return ErrorInvalidOperation("DrawElements: bound vertex attribute buffers do not have sufficient "
|
2010-07-16 07:30:31 -07:00
|
|
|
"size for given indices from the bound element array");
|
2010-06-01 23:09:18 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-16 07:30:31 -07:00
|
|
|
// If count is 0, there's nothing to do.
|
|
|
|
if (count == 0)
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
MakeContextCurrent();
|
2009-12-06 16:07:56 -08:00
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
BindFakeBlackTextures();
|
2010-09-02 07:34:08 -07:00
|
|
|
DoFakeVertexAttrib0(checked_neededCount.value());
|
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
gl->fDrawElements(mode, count, type, (GLvoid*) (byteOffset));
|
2010-09-02 07:34:08 -07:00
|
|
|
|
|
|
|
UndoFakeVertexAttrib0();
|
2010-08-23 14:03:53 -07:00
|
|
|
UnbindFakeBlackTextures();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-08 11:45:23 -07:00
|
|
|
NS_IMETHODIMP WebGLContext::Enable(WebGLenum cap)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateCapabilityEnum(cap, "enable"))
|
|
|
|
return NS_OK;
|
2010-06-08 11:45:23 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fEnable(cap);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP WebGLContext::Disable(WebGLenum cap)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateCapabilityEnum(cap, "disable"))
|
|
|
|
return NS_OK;
|
2010-06-08 11:45:23 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fDisable(cap);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::EnableVertexAttribArray(WebGLuint index)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
if (index > mAttribBuffers.Length())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("EnableVertexAttribArray: index out of range");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
gl->fEnableVertexAttribArray(index);
|
|
|
|
mAttribBuffers[index].enabled = PR_TRUE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX need to track this -- see glDeleteRenderbuffer above and man page for DeleteRenderbuffers
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::FramebufferRenderbuffer(WebGLenum target, WebGLenum attachment, WebGLenum rbtarget, nsIWebGLRenderbuffer *rbobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint renderbuffername;
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isNull;
|
2010-05-15 05:07:30 -07:00
|
|
|
WebGLRenderbuffer *wrb;
|
|
|
|
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("framebufferRenderbuffer: renderbuffer", rbobj, &wrb, &renderbuffername, &isNull))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferRenderbuffer: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
if ((attachment < LOCAL_GL_COLOR_ATTACHMENT0 ||
|
|
|
|
attachment >= LOCAL_GL_COLOR_ATTACHMENT0 + mFramebufferColorAttachments.Length()) &&
|
2009-09-02 17:47:49 -07:00
|
|
|
attachment != LOCAL_GL_DEPTH_ATTACHMENT &&
|
|
|
|
attachment != LOCAL_GL_STENCIL_ATTACHMENT)
|
2010-05-15 05:07:30 -07:00
|
|
|
{
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferRenderbuffer: attachment", attachment);
|
2010-05-15 05:07:30 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (rbtarget != LOCAL_GL_RENDERBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferRenderbuffer: renderbuffer target:", rbtarget);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!mBoundFramebuffer)
|
|
|
|
return ErrorInvalidOperation("FramebufferRenderbuffer: cannot modify framebuffer 0");
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
// dimensions are kept for readPixels primarily, function only uses COLOR_ATTACHMENT0
|
2010-07-18 22:01:14 -07:00
|
|
|
if (attachment == LOCAL_GL_COLOR_ATTACHMENT0)
|
2010-05-15 05:07:30 -07:00
|
|
|
mBoundFramebuffer->setDimensions(wrb);
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fFramebufferRenderbuffer(target, attachment, rbtarget, renderbuffername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::FramebufferTexture2D(WebGLenum target,
|
|
|
|
WebGLenum attachment,
|
|
|
|
WebGLenum textarget,
|
2010-05-19 13:46:08 -07:00
|
|
|
nsIWebGLTexture *tobj,
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLint level)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint texturename;
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isNull;
|
2010-05-15 05:07:30 -07:00
|
|
|
WebGLTexture *wtex;
|
|
|
|
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("framebufferTexture2D: texture", tobj, &wtex, &texturename, &isNull))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferTexture2D: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
if ((attachment < LOCAL_GL_COLOR_ATTACHMENT0 ||
|
|
|
|
attachment >= LOCAL_GL_COLOR_ATTACHMENT0 + mFramebufferColorAttachments.Length()) &&
|
2009-09-02 17:47:49 -07:00
|
|
|
attachment != LOCAL_GL_DEPTH_ATTACHMENT &&
|
|
|
|
attachment != LOCAL_GL_STENCIL_ATTACHMENT)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferTexture2D: attachment", attachment);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (textarget != LOCAL_GL_TEXTURE_2D &&
|
|
|
|
(textarget < LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X ||
|
|
|
|
textarget > LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z))
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("framebufferTexture2D: invalid texture target", textarget);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (level != 0)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("FramebufferTexture2D: level must be 0");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!mBoundFramebuffer)
|
|
|
|
return ErrorInvalidOperation("FramebufferTexture2D: cannot modify framebuffer 0");
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
// dimensions are kept for readPixels primarily, function only uses COLOR_ATTACHMENT0
|
2010-07-18 22:01:14 -07:00
|
|
|
if (attachment == LOCAL_GL_COLOR_ATTACHMENT0)
|
2010-05-15 05:07:30 -07:00
|
|
|
mBoundFramebuffer->setDimensions(wtex);
|
|
|
|
|
2009-12-07 15:10:04 -08:00
|
|
|
// XXXXX we need to store/reference this attachment!
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fFramebufferTexture2D(target, attachment, textarget, texturename, level);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
GL_SAME_METHOD_0(Flush, Flush)
|
|
|
|
|
|
|
|
GL_SAME_METHOD_0(Finish, Finish)
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::FrontFace(WebGLenum mode)
|
|
|
|
{
|
|
|
|
switch (mode) {
|
|
|
|
case LOCAL_GL_CW:
|
|
|
|
case LOCAL_GL_CCW:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("frontFace: mode", mode);
|
2010-06-30 08:48:30 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fFrontFace(mode);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
// returns an object: { size: ..., type: ..., name: ... }
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetActiveAttrib(nsIWebGLProgram *pobj, PRUint32 index, nsIWebGLActiveInfo **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("getActiveAttrib: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
GLint len = 0;
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_ACTIVE_ATTRIBUTE_MAX_LENGTH, &len);
|
2010-08-25 05:17:08 -07:00
|
|
|
if (len == 0)
|
2010-06-08 15:14:43 -07:00
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-10 10:45:00 -07:00
|
|
|
nsAutoArrayPtr<char> name(new char[len]);
|
2009-09-02 17:47:49 -07:00
|
|
|
PRInt32 attrsize = 0;
|
|
|
|
PRUint32 attrtype = 0;
|
|
|
|
|
2010-06-10 10:45:00 -07:00
|
|
|
gl->fGetActiveAttrib(progname, index, len, &len, (GLint*) &attrsize, (WebGLuint*) &attrtype, name);
|
2010-06-08 15:14:43 -07:00
|
|
|
if (attrsize == 0 || attrtype == 0) {
|
|
|
|
*retval = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
WebGLActiveInfo *retActiveInfo = new WebGLActiveInfo(attrsize, attrtype, name.get(), len);
|
|
|
|
NS_ADDREF(*retval = retActiveInfo);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::GenerateMipmap(WebGLenum target)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateTextureTargetEnum(target, "generateMipmap"))
|
|
|
|
return NS_OK;
|
2010-06-30 08:48:30 -07:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
WebGLTexture *tex = activeBoundTextureForTarget(target);
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
if (!tex)
|
|
|
|
return ErrorInvalidOperation("generateMipmap: no texture is bound to this target");
|
|
|
|
|
2010-09-02 07:29:41 -07:00
|
|
|
if (!tex->IsFirstImagePowerOfTwo()) {
|
|
|
|
return ErrorInvalidOperation("generateMipmap: the width or height of this texture is not a power of two");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!tex->AreAllLevel0ImageInfosEqual()) {
|
|
|
|
return ErrorInvalidOperation("generateMipmap: the six faces of this cube map have different dimensions, format, or type.");
|
2010-08-23 14:03:35 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetGeneratedMipmap();
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fGenerateMipmap(target);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetActiveUniform(nsIWebGLProgram *pobj, PRUint32 index, nsIWebGLActiveInfo **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("getActiveUniform: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
GLint len = 0;
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_ACTIVE_UNIFORM_MAX_LENGTH, &len);
|
2010-08-25 05:17:08 -07:00
|
|
|
if (len == 0)
|
2010-06-10 10:45:00 -07:00
|
|
|
*retval = nsnull;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-16 07:31:53 -07:00
|
|
|
nsAutoArrayPtr<char> name(new char[len + 3]); // +3 because we might have to append "[0]", see below
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
PRInt32 attrsize = 0;
|
|
|
|
PRUint32 attrtype = 0;
|
|
|
|
|
2010-06-10 10:45:00 -07:00
|
|
|
gl->fGetActiveUniform(progname, index, len, &len, (GLint*) &attrsize, (WebGLenum*) &attrtype, name);
|
|
|
|
if (len == 0 || attrsize == 0 || attrtype == 0) {
|
|
|
|
*retval = nsnull;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-16 07:31:53 -07:00
|
|
|
// OpenGL ES 2.0 specifies that if foo is a uniform array, GetActiveUniform returns its name as "foo[0]".
|
|
|
|
// See section 2.10 page 35 in the OpenGL ES 2.0.24 specification:
|
|
|
|
//
|
|
|
|
// > If the active uniform is an array, the uniform name returned in name will always
|
|
|
|
// > be the name of the uniform array appended with "[0]".
|
|
|
|
//
|
|
|
|
// There is no such requirement in the OpenGL (non-ES) spec and indeed we have OpenGL implementations returning
|
|
|
|
// "foo" instead of "foo[0]". So, when implementing WebGL on top of desktop OpenGL, we must check if the
|
|
|
|
// returned name ends in [0], and if it doesn't, append that.
|
|
|
|
//
|
|
|
|
// In principle we don't need to do that on OpenGL ES, but this is such a tricky difference between the ES and non-ES
|
|
|
|
// specs that it seems probable that some ES implementers will overlook it. Since the work-around is quite cheap,
|
|
|
|
// we do it unconditionally.
|
|
|
|
if (attrsize > 1 && name[len-1] != ']') {
|
|
|
|
name[len++] = '[';
|
|
|
|
name[len++] = '0';
|
|
|
|
name[len++] = ']';
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
WebGLActiveInfo *retActiveInfo = new WebGLActiveInfo(attrsize, attrtype, name.get(), len);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
NS_ADDREF(*retval = retActiveInfo);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-15 08:49:34 -07:00
|
|
|
WebGLContext::GetAttachedShaders(nsIWebGLProgram *pobj, nsIVariant **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-15 08:49:34 -07:00
|
|
|
WebGLProgram *prog;
|
2010-09-13 08:55:07 -07:00
|
|
|
PRBool isNull;
|
|
|
|
if (!GetConcreteObject("getAttachedShaders", pobj, &prog, &isNull))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-15 08:49:34 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-09-13 08:55:07 -07:00
|
|
|
if (isNull) {
|
|
|
|
wrval->SetAsVoid();
|
|
|
|
// note no return, we still want to return the variant
|
|
|
|
ErrorInvalidValue("getAttachedShaders: invalid program");
|
|
|
|
} else if (prog->AttachedShaders().Length() == 0) {
|
2010-06-15 08:49:34 -07:00
|
|
|
wrval->SetAsEmptyArray();
|
2010-09-13 08:55:07 -07:00
|
|
|
} else {
|
2010-06-15 08:49:34 -07:00
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_INTERFACE,
|
|
|
|
&NS_GET_IID(nsIWebGLShader),
|
|
|
|
prog->AttachedShaders().Length(),
|
|
|
|
const_cast<void*>( // @#$% SetAsArray doesn't accept a const void*
|
|
|
|
static_cast<const void*>(
|
|
|
|
prog->AttachedShaders().Elements()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-06-15 08:49:34 -07:00
|
|
|
*retval = wrval.forget().get();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetAttribLocation(nsIWebGLProgram *pobj,
|
2010-01-22 13:34:25 -08:00
|
|
|
const nsAString& name,
|
|
|
|
PRInt32 *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("getAttribLocation: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
2010-05-19 13:46:08 -07:00
|
|
|
*retval = gl->fGetAttribLocation(progname, NS_LossyConvertUTF16toASCII(name).get());
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-11 14:36:34 -07:00
|
|
|
WebGLContext::GetParameter(PRUint32 pname, nsIVariant **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
|
|
|
//
|
|
|
|
// String params
|
|
|
|
//
|
|
|
|
|
|
|
|
case LOCAL_GL_VENDOR:
|
2010-06-11 14:45:40 -07:00
|
|
|
wrval->SetAsDOMString(NS_LITERAL_STRING("Mozilla"));
|
|
|
|
break;
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_RENDERER:
|
2010-06-11 14:45:40 -07:00
|
|
|
wrval->SetAsDOMString(NS_LITERAL_STRING("Mozilla"));
|
|
|
|
break;
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_VERSION:
|
2010-06-11 14:45:40 -07:00
|
|
|
wrval->SetAsDOMString(NS_LITERAL_STRING("WebGL 1.0"));
|
|
|
|
break;
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_SHADING_LANGUAGE_VERSION:
|
2010-06-11 14:45:40 -07:00
|
|
|
wrval->SetAsDOMString(NS_LITERAL_STRING("WebGL GLSL ES 1.0"));
|
2009-09-02 17:47:49 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Single-value params
|
|
|
|
//
|
|
|
|
|
|
|
|
// int
|
|
|
|
case LOCAL_GL_CULL_FACE_MODE:
|
|
|
|
case LOCAL_GL_FRONT_FACE:
|
|
|
|
case LOCAL_GL_ACTIVE_TEXTURE:
|
|
|
|
case LOCAL_GL_DEPTH_CLEAR_VALUE:
|
|
|
|
case LOCAL_GL_STENCIL_CLEAR_VALUE:
|
|
|
|
case LOCAL_GL_STENCIL_FUNC:
|
|
|
|
case LOCAL_GL_STENCIL_REF:
|
|
|
|
case LOCAL_GL_STENCIL_FAIL:
|
|
|
|
case LOCAL_GL_STENCIL_PASS_DEPTH_FAIL:
|
|
|
|
case LOCAL_GL_STENCIL_PASS_DEPTH_PASS:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_FUNC:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_REF:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_FAIL:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_PASS_DEPTH_FAIL:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_PASS_DEPTH_PASS:
|
|
|
|
case LOCAL_GL_DEPTH_FUNC:
|
|
|
|
case LOCAL_GL_BLEND_SRC_RGB:
|
|
|
|
case LOCAL_GL_BLEND_SRC_ALPHA:
|
|
|
|
case LOCAL_GL_BLEND_DST_RGB:
|
|
|
|
case LOCAL_GL_BLEND_DST_ALPHA:
|
|
|
|
case LOCAL_GL_BLEND_EQUATION_RGB:
|
|
|
|
case LOCAL_GL_BLEND_EQUATION_ALPHA:
|
2010-06-30 08:48:30 -07:00
|
|
|
case LOCAL_GL_UNPACK_ALIGNMENT:
|
|
|
|
case LOCAL_GL_PACK_ALIGNMENT:
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_GENERATE_MIPMAP_HINT:
|
|
|
|
case LOCAL_GL_SUBPIXEL_BITS:
|
|
|
|
case LOCAL_GL_MAX_TEXTURE_SIZE:
|
|
|
|
case LOCAL_GL_MAX_CUBE_MAP_TEXTURE_SIZE:
|
|
|
|
case LOCAL_GL_SAMPLE_BUFFERS:
|
|
|
|
case LOCAL_GL_SAMPLES:
|
|
|
|
case LOCAL_GL_MAX_VERTEX_ATTRIBS:
|
|
|
|
case LOCAL_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS:
|
|
|
|
case LOCAL_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS:
|
|
|
|
case LOCAL_GL_MAX_TEXTURE_IMAGE_UNITS:
|
|
|
|
case LOCAL_GL_MAX_FRAGMENT_UNIFORM_COMPONENTS:
|
|
|
|
case LOCAL_GL_MAX_RENDERBUFFER_SIZE:
|
|
|
|
case LOCAL_GL_RED_BITS:
|
|
|
|
case LOCAL_GL_GREEN_BITS:
|
|
|
|
case LOCAL_GL_BLUE_BITS:
|
|
|
|
case LOCAL_GL_ALPHA_BITS:
|
|
|
|
case LOCAL_GL_DEPTH_BITS:
|
|
|
|
case LOCAL_GL_STENCIL_BITS:
|
2010-06-30 08:48:30 -07:00
|
|
|
case LOCAL_GL_IMPLEMENTATION_COLOR_READ_TYPE:
|
|
|
|
case LOCAL_GL_IMPLEMENTATION_COLOR_READ_FORMAT:
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-06-08 07:40:23 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetIntegerv(pname, &i);
|
2010-06-11 14:36:34 -07:00
|
|
|
wrval->SetAsInt32(i);
|
2010-06-08 07:40:23 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
case LOCAL_GL_MAX_VARYING_VECTORS:
|
|
|
|
{
|
2010-07-28 14:24:09 -07:00
|
|
|
if (gl->IsGLES2()) {
|
2010-06-30 08:48:30 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetIntegerv(pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
2010-07-28 14:24:09 -07:00
|
|
|
} else {
|
2010-06-30 08:48:30 -07:00
|
|
|
// since this pname is absent from desktop OpenGL, we have to implement it by hand.
|
|
|
|
// The formula below comes from the public_webgl list, "problematic GetParameter pnames" thread
|
|
|
|
GLint i = 0, j = 0;
|
|
|
|
gl->fGetIntegerv(LOCAL_GL_MAX_VERTEX_OUTPUT_COMPONENTS, &i);
|
|
|
|
gl->fGetIntegerv(LOCAL_GL_MAX_FRAGMENT_INPUT_COMPONENTS, &j);
|
|
|
|
wrval->SetAsInt32(PR_MIN(i,j)/4);
|
2010-07-28 14:24:09 -07:00
|
|
|
}
|
2010-06-30 08:48:30 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
case LOCAL_GL_NUM_COMPRESSED_TEXTURE_FORMATS:
|
|
|
|
wrval->SetAsInt32(0);
|
|
|
|
break;
|
2010-06-30 08:48:30 -07:00
|
|
|
case LOCAL_GL_COMPRESSED_TEXTURE_FORMATS:
|
|
|
|
wrval->SetAsVoid(); // the spec says we must return null
|
|
|
|
break;
|
2010-06-11 14:36:34 -07:00
|
|
|
|
2010-06-08 07:40:23 -07:00
|
|
|
// unsigned int. here we may have to return very large values like 2^32-1 that can't be represented as
|
2010-06-11 14:36:34 -07:00
|
|
|
// javascript integer values. We just return them as doubles and javascript doesn't care.
|
2010-06-08 07:40:23 -07:00
|
|
|
case LOCAL_GL_STENCIL_BACK_VALUE_MASK:
|
|
|
|
case LOCAL_GL_STENCIL_BACK_WRITEMASK:
|
|
|
|
case LOCAL_GL_STENCIL_VALUE_MASK:
|
|
|
|
case LOCAL_GL_STENCIL_WRITEMASK:
|
|
|
|
{
|
|
|
|
GLint i = 0; // the GL api (glGetIntegerv) only does signed ints
|
|
|
|
gl->fGetIntegerv(pname, &i);
|
|
|
|
GLuint i_unsigned(i); // this is where -1 becomes 2^32-1
|
2010-06-11 14:36:34 -07:00
|
|
|
double i_double(i_unsigned); // pass as FP value to allow large values such as 2^32-1.
|
|
|
|
wrval->SetAsDouble(i_double);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
// float
|
|
|
|
case LOCAL_GL_LINE_WIDTH:
|
|
|
|
case LOCAL_GL_POLYGON_OFFSET_FACTOR:
|
|
|
|
case LOCAL_GL_POLYGON_OFFSET_UNITS:
|
|
|
|
case LOCAL_GL_SAMPLE_COVERAGE_VALUE:
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
GLfloat f = 0.f;
|
|
|
|
gl->fGetFloatv(pname, &f);
|
|
|
|
wrval->SetAsFloat(f);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
2010-06-08 07:40:23 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
// bool
|
2010-06-08 07:40:23 -07:00
|
|
|
case LOCAL_GL_BLEND:
|
|
|
|
case LOCAL_GL_DEPTH_TEST:
|
|
|
|
case LOCAL_GL_STENCIL_TEST:
|
|
|
|
case LOCAL_GL_CULL_FACE:
|
|
|
|
case LOCAL_GL_DITHER:
|
|
|
|
case LOCAL_GL_POLYGON_OFFSET_FILL:
|
|
|
|
case LOCAL_GL_SCISSOR_TEST:
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_SAMPLE_COVERAGE_INVERT:
|
|
|
|
case LOCAL_GL_DEPTH_WRITEMASK:
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
realGLboolean b = 0;
|
|
|
|
gl->fGetBooleanv(pname, &b);
|
|
|
|
wrval->SetAsBool(PRBool(b));
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
// bool, WebGL-specific
|
|
|
|
case UNPACK_FLIP_Y_WEBGL:
|
|
|
|
wrval->SetAsBool(mPixelStoreFlipY);
|
|
|
|
break;
|
|
|
|
case UNPACK_PREMULTIPLY_ALPHA_WEBGL:
|
|
|
|
wrval->SetAsBool(mPixelStorePremultiplyAlpha);
|
|
|
|
break;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
//
|
|
|
|
// Complex values
|
|
|
|
//
|
|
|
|
case LOCAL_GL_DEPTH_RANGE: // 2 floats
|
|
|
|
case LOCAL_GL_ALIASED_POINT_SIZE_RANGE: // 2 floats
|
|
|
|
case LOCAL_GL_ALIASED_LINE_WIDTH_RANGE: // 2 floats
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
GLfloat fv[2] = { 0 };
|
|
|
|
gl->fGetFloatv(pname, fv);
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_FLOAT, nsnull,
|
|
|
|
2, static_cast<void*>(fv));
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_COLOR_CLEAR_VALUE: // 4 floats
|
|
|
|
case LOCAL_GL_BLEND_COLOR: // 4 floats
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
GLfloat fv[4] = { 0 };
|
|
|
|
gl->fGetFloatv(pname, fv);
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_FLOAT, nsnull,
|
|
|
|
4, static_cast<void*>(fv));
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_MAX_VIEWPORT_DIMS: // 2 ints
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
GLint iv[2] = { 0 };
|
|
|
|
gl->fGetIntegerv(pname, iv);
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_INT32, nsnull,
|
|
|
|
2, static_cast<void*>(iv));
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_SCISSOR_BOX: // 4 ints
|
|
|
|
case LOCAL_GL_VIEWPORT: // 4 ints
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
GLint iv[2] = { 0 };
|
|
|
|
gl->fGetIntegerv(pname, iv);
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_INT32, nsnull,
|
|
|
|
4, static_cast<void*>(iv));
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2010-06-08 07:40:23 -07:00
|
|
|
case LOCAL_GL_COLOR_WRITEMASK: // 4 bools
|
|
|
|
{
|
2010-06-11 14:36:34 -07:00
|
|
|
realGLboolean gl_bv[4] = { 0 };
|
|
|
|
gl->fGetBooleanv(pname, gl_bv);
|
|
|
|
PRBool pr_bv[4] = { gl_bv[0], gl_bv[1], gl_bv[2], gl_bv[3] };
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_BOOL, nsnull,
|
|
|
|
4, static_cast<void*>(pr_bv));
|
|
|
|
}
|
|
|
|
break;
|
2010-06-08 07:40:23 -07:00
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
case LOCAL_GL_ARRAY_BUFFER_BINDING:
|
|
|
|
wrval->SetAsISupports(mBoundArrayBuffer);
|
|
|
|
break;
|
2010-06-08 07:40:23 -07:00
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
case LOCAL_GL_ELEMENT_ARRAY_BUFFER_BINDING:
|
|
|
|
wrval->SetAsISupports(mBoundElementArrayBuffer);
|
2010-06-08 07:40:23 -07:00
|
|
|
break;
|
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
case LOCAL_GL_RENDERBUFFER_BINDING:
|
|
|
|
wrval->SetAsISupports(mBoundRenderbuffer);
|
2010-06-08 07:40:23 -07:00
|
|
|
break;
|
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
case LOCAL_GL_FRAMEBUFFER_BINDING:
|
|
|
|
wrval->SetAsISupports(mBoundFramebuffer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_CURRENT_PROGRAM:
|
|
|
|
wrval->SetAsISupports(mCurrentProgram);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_TEXTURE_BINDING_2D:
|
2010-07-18 22:01:14 -07:00
|
|
|
wrval->SetAsISupports(mBound2DTextures[mActiveTexture]);
|
2010-06-11 14:36:34 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_TEXTURE_BINDING_CUBE_MAP:
|
|
|
|
wrval->SetAsISupports(mBoundCubeMapTextures[mActiveTexture]);
|
|
|
|
break;
|
2010-06-08 07:40:23 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getParameter: parameter", pname);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-06-11 14:36:34 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetBufferParameter(WebGLenum target, WebGLenum pname, nsIVariant **retval)
|
2009-11-18 12:42:35 -08:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (target != LOCAL_GL_ARRAY_BUFFER && target != LOCAL_GL_ELEMENT_ARRAY_BUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getBufferParameter: target", target);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_BUFFER_SIZE:
|
|
|
|
case LOCAL_GL_BUFFER_USAGE:
|
|
|
|
case LOCAL_GL_BUFFER_ACCESS:
|
|
|
|
case LOCAL_GL_BUFFER_MAPPED:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetBufferParameteriv(target, pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getBufferParameter: parameter", pname);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetFramebufferAttachmentParameter(WebGLenum target, WebGLenum attachment, WebGLenum pname, nsIVariant **retval)
|
2009-11-18 12:42:35 -08:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getFramebufferAttachmentParameter: target", target);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
|
|
|
switch (attachment) {
|
|
|
|
case LOCAL_GL_COLOR_ATTACHMENT0:
|
|
|
|
case LOCAL_GL_DEPTH_ATTACHMENT:
|
|
|
|
case LOCAL_GL_STENCIL_ATTACHMENT:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetFramebufferAttachmentParameter: attachment", attachment);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
if (!mBoundFramebuffer)
|
|
|
|
return ErrorInvalidOperation("GetFramebufferAttachmentParameter: cannot query framebuffer 0");
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
GLint atype = 0;
|
|
|
|
gl->fGetFramebufferAttachmentParameteriv(target, attachment, LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE, &atype);
|
|
|
|
|
|
|
|
if (atype == LOCAL_GL_RENDERBUFFER) {
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
|
|
|
|
wrval->SetAsInt32(atype);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: {
|
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetFramebufferAttachmentParameteriv(target, attachment, pname, &i);
|
|
|
|
WebGLRenderbuffer *rb = mMapRenderbuffers.GetWeak(PRUint32(i));
|
|
|
|
NS_ASSERTION(rb, "Expected to find renderbuffer in table, but it's not there?");
|
|
|
|
wrval->SetAsISupports(rb);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-09-02 07:38:26 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetFramebufferAttachmentParameter: pname", pname);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
2010-07-18 22:01:14 -07:00
|
|
|
} else if (atype == LOCAL_GL_TEXTURE) {
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
|
|
|
|
wrval->SetAsInt32(atype);
|
|
|
|
break;
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME: {
|
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetFramebufferAttachmentParameteriv(target, attachment, pname, &i);
|
|
|
|
WebGLTexture *tex = mMapTextures.GetWeak(PRUint32(i));
|
|
|
|
NS_ASSERTION(tex, "Expected to find texture in table, but it's not there?");
|
|
|
|
wrval->SetAsISupports(tex);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL:
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE: {
|
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetFramebufferAttachmentParameteriv(target, attachment, pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-09-02 07:38:26 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetFramebufferAttachmentParameter: pname", pname);
|
2010-07-18 22:01:14 -07:00
|
|
|
}
|
2010-09-02 07:38:26 -07:00
|
|
|
} else if (atype == LOCAL_GL_NONE) {
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE:
|
|
|
|
wrval->SetAsInt32(atype);
|
|
|
|
break;
|
|
|
|
|
2010-09-13 08:55:07 -07:00
|
|
|
case LOCAL_GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME:
|
|
|
|
wrval->SetAsEmpty();
|
|
|
|
break;
|
|
|
|
|
2010-09-02 07:38:26 -07:00
|
|
|
default:
|
|
|
|
return ErrorInvalidEnumInfo("GetFramebufferAttachmentParameter: pname", pname);
|
|
|
|
}
|
|
|
|
} else { // GL bug? should never happen
|
2010-07-18 22:01:14 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetRenderbufferParameter(WebGLenum target, WebGLenum pname, nsIVariant **retval)
|
2009-11-18 12:42:35 -08:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (target != LOCAL_GL_RENDERBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetRenderbufferParameter: target", target);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_RENDERBUFFER_WIDTH:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_HEIGHT:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_INTERNAL_FORMAT:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_RED_SIZE:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_GREEN_SIZE:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_BLUE_SIZE:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_ALPHA_SIZE:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_DEPTH_SIZE:
|
|
|
|
case LOCAL_GL_RENDERBUFFER_STENCIL_SIZE:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetRenderbufferParameteriv(target, pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetRenderbufferParameter: parameter", pname);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2009-09-17 23:01:07 -07:00
|
|
|
WebGLContext::CreateBuffer(nsIWebGLBuffer **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint name;
|
2009-09-02 17:47:49 -07:00
|
|
|
gl->fGenBuffers(1, &name);
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLBuffer *globj = new WebGLBuffer(this, name);
|
|
|
|
NS_ADDREF(*retval = globj);
|
|
|
|
mMapBuffers.Put(name, globj);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-17 23:01:07 -07:00
|
|
|
WebGLContext::CreateTexture(nsIWebGLTexture **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint name;
|
2009-09-02 17:47:49 -07:00
|
|
|
gl->fGenTextures(1, &name);
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLTexture *globj = new WebGLTexture(this, name);
|
|
|
|
NS_ADDREF(*retval = globj);
|
|
|
|
mMapTextures.Put(name, globj);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::GetError(WebGLenum *_retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
2010-05-15 06:55:45 -07:00
|
|
|
|
|
|
|
// Always call glGetError to clear any pending
|
|
|
|
// real GL error.
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLenum err = gl->fGetError();
|
2010-05-15 06:55:45 -07:00
|
|
|
|
|
|
|
// mSynthesizedGLError has the first error that occurred,
|
|
|
|
// whether synthesized or real; if it's not NO_ERROR, use it.
|
|
|
|
if (mSynthesizedGLError != LOCAL_GL_NO_ERROR) {
|
|
|
|
err = mSynthesizedGLError;
|
|
|
|
mSynthesizedGLError = LOCAL_GL_NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
*_retval = err;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetProgramParameter(nsIWebGLProgram *pobj, PRUint32 pname, nsIVariant **retval)
|
2009-11-18 12:42:35 -08:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("getProgramParameter: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_CURRENT_PROGRAM:
|
|
|
|
case LOCAL_GL_ATTACHED_SHADERS:
|
|
|
|
case LOCAL_GL_INFO_LOG_LENGTH:
|
|
|
|
case LOCAL_GL_ACTIVE_UNIFORMS:
|
|
|
|
case LOCAL_GL_ACTIVE_UNIFORM_MAX_LENGTH:
|
|
|
|
case LOCAL_GL_ACTIVE_ATTRIBUTES:
|
|
|
|
case LOCAL_GL_ACTIVE_ATTRIBUTE_MAX_LENGTH:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetProgramiv(progname, pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
break;
|
2010-06-01 23:09:19 -07:00
|
|
|
case LOCAL_GL_DELETE_STATUS:
|
|
|
|
case LOCAL_GL_LINK_STATUS:
|
|
|
|
case LOCAL_GL_VALIDATE_STATUS:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetProgramiv(progname, pname, &i);
|
|
|
|
wrval->SetAsBool(PRBool(i));
|
2010-06-01 23:09:19 -07:00
|
|
|
}
|
|
|
|
break;
|
2009-11-18 12:42:35 -08:00
|
|
|
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("GetProgramParameter: parameter", pname);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetProgramInfoLog(nsIWebGLProgram *pobj, nsAString& retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("getProgramInfoLog: program", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
PRInt32 k = -1;
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_INFO_LOG_LENGTH, (GLint*) &k);
|
2009-09-02 17:47:49 -07:00
|
|
|
if (k == -1)
|
2010-05-15 06:55:45 -07:00
|
|
|
return NS_ERROR_FAILURE; // XXX GL error? shouldn't happen!
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (k == 0) {
|
|
|
|
retval.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString log;
|
|
|
|
log.SetCapacity(k);
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetProgramInfoLog(progname, k, (GLint*) &k, (char*) log.BeginWriting());
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
log.SetLength(k);
|
|
|
|
|
|
|
|
CopyASCIItoUTF16(log, retval);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
// here we have to support all pnames with both int and float params.
|
|
|
|
// See this discussion:
|
|
|
|
// https://www.khronos.org/webgl/public-mailing-list/archives/1008/msg00014.html
|
|
|
|
nsresult WebGLContext::TexParameter_base(WebGLenum target, WebGLenum pname,
|
|
|
|
WebGLint *intParamPtr, WebGLfloat *floatParamPtr)
|
2009-09-17 23:01:07 -07:00
|
|
|
{
|
2010-08-23 14:03:44 -07:00
|
|
|
NS_ENSURE_TRUE(intParamPtr || floatParamPtr, NS_ERROR_FAILURE);
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-10-09 12:44:25 -07:00
|
|
|
WebGLint intParam = intParamPtr ? *intParamPtr : WebGLint(*floatParamPtr);
|
|
|
|
WebGLfloat floatParam = floatParamPtr ? *floatParamPtr : WebGLfloat(*intParamPtr);
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
if (!ValidateTextureTargetEnum(target, "texParameter: target"))
|
|
|
|
return NS_OK;
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
WebGLTexture *tex = activeBoundTextureForTarget(target);
|
|
|
|
if (!tex)
|
|
|
|
return ErrorInvalidOperation("texParameter: no texture is bound to this target");
|
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
PRBool pnameAndParamAreIncompatible = PR_FALSE;
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_TEXTURE_MIN_FILTER:
|
|
|
|
switch (intParam) {
|
|
|
|
case LOCAL_GL_NEAREST:
|
|
|
|
case LOCAL_GL_LINEAR:
|
|
|
|
case LOCAL_GL_NEAREST_MIPMAP_NEAREST:
|
|
|
|
case LOCAL_GL_LINEAR_MIPMAP_NEAREST:
|
|
|
|
case LOCAL_GL_NEAREST_MIPMAP_LINEAR:
|
|
|
|
case LOCAL_GL_LINEAR_MIPMAP_LINEAR:
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetMinFilter(intParam);
|
2010-08-23 14:03:44 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pnameAndParamAreIncompatible = PR_TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_TEXTURE_MAG_FILTER:
|
|
|
|
switch (intParam) {
|
|
|
|
case LOCAL_GL_NEAREST:
|
|
|
|
case LOCAL_GL_LINEAR:
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetMagFilter(intParam);
|
2010-08-23 14:03:44 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pnameAndParamAreIncompatible = PR_TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_TEXTURE_WRAP_S:
|
2010-08-23 14:03:53 -07:00
|
|
|
switch (intParam) {
|
|
|
|
case LOCAL_GL_CLAMP_TO_EDGE:
|
|
|
|
case LOCAL_GL_MIRRORED_REPEAT:
|
|
|
|
case LOCAL_GL_REPEAT:
|
|
|
|
tex->SetWrapS(intParam);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pnameAndParamAreIncompatible = PR_TRUE;
|
|
|
|
}
|
|
|
|
break;
|
2010-08-23 14:03:44 -07:00
|
|
|
case LOCAL_GL_TEXTURE_WRAP_T:
|
|
|
|
switch (intParam) {
|
|
|
|
case LOCAL_GL_CLAMP_TO_EDGE:
|
|
|
|
case LOCAL_GL_MIRRORED_REPEAT:
|
|
|
|
case LOCAL_GL_REPEAT:
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetWrapT(intParam);
|
2010-08-23 14:03:44 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
pnameAndParamAreIncompatible = PR_TRUE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ErrorInvalidEnumInfo("texParameter: pname", pname);
|
|
|
|
}
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
if (pnameAndParamAreIncompatible) {
|
|
|
|
if (intParamPtr)
|
|
|
|
return ErrorInvalidEnum("texParameteri: pname %x and param %x (decimal %d) are mutually incompatible",
|
|
|
|
pname, intParam, intParam);
|
|
|
|
else
|
|
|
|
return ErrorInvalidValue("texParameterf: pname %x and floating-point param %e are mutually incompatible",
|
|
|
|
pname, floatParam);
|
|
|
|
}
|
2009-09-17 23:01:07 -07:00
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
if (intParamPtr)
|
|
|
|
gl->fTexParameteri(target, pname, intParam);
|
|
|
|
else
|
|
|
|
gl->fTexParameterf(target, pname, floatParam);
|
2009-09-17 23:01:07 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-08-23 14:03:44 -07:00
|
|
|
WebGLContext::TexParameterf(WebGLenum target, WebGLenum pname, WebGLfloat param)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-23 14:03:44 -07:00
|
|
|
return TexParameter_base(target, pname, nsnull, ¶m);
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:44 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::TexParameteri(WebGLenum target, WebGLenum pname, WebGLint param)
|
|
|
|
{
|
|
|
|
return TexParameter_base(target, pname, ¶m, nsnull);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetTexParameter(WebGLenum target, WebGLenum pname, nsIVariant **retval)
|
2009-09-17 23:01:07 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateTextureTargetEnum(target, "getTexParameter: target"))
|
|
|
|
return NS_OK;
|
2010-06-19 07:42:43 -07:00
|
|
|
|
2010-09-13 08:57:25 -07:00
|
|
|
if (!activeBoundTextureForTarget(target))
|
|
|
|
return ErrorInvalidOperation("getTexParameter: no texture bound");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_TEXTURE_MIN_FILTER:
|
|
|
|
case LOCAL_GL_TEXTURE_MAG_FILTER:
|
|
|
|
case LOCAL_GL_TEXTURE_WRAP_S:
|
|
|
|
case LOCAL_GL_TEXTURE_WRAP_T:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->fGetTexParameteriv(target, pname, &i);
|
2010-06-19 07:42:43 -07:00
|
|
|
wrval->SetAsInt32(i);
|
2009-09-17 23:01:07 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getTexParameter: parameter", pname);
|
2009-09-17 23:01:07 -07:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
/* any getUniform(in WebGLProgram program, in WebGLUniformLocation location) raises(DOMException); */
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:43:40 -07:00
|
|
|
WebGLContext::GetUniform(nsIWebGLProgram *pobj, nsIWebGLUniformLocation *ploc, nsIVariant **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLProgram *prog;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("getUniform: program", pobj, &prog, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLUniformLocation *location;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObject("getUniform: location", ploc, &location))
|
|
|
|
return NS_OK;
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
if (location->Program() != prog)
|
|
|
|
return ErrorInvalidValue("GetUniform: this uniform location corresponds to another program");
|
|
|
|
|
2010-06-08 14:25:27 -07:00
|
|
|
if (location->ProgramGeneration() != prog->Generation())
|
|
|
|
return ErrorInvalidValue("GetUniform: this uniform location is obsolete since the program has been relinked");
|
|
|
|
|
2010-06-19 07:43:40 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
GLint uniforms = 0;
|
2010-06-10 10:45:00 -07:00
|
|
|
GLint uniformNameMaxLength = 0;
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_ACTIVE_UNIFORMS, &uniforms);
|
2010-06-10 10:45:00 -07:00
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_ACTIVE_UNIFORM_MAX_LENGTH, &uniformNameMaxLength);
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
// we now need the type info to switch between fGetUniformfv and fGetUniformiv
|
|
|
|
// the only way to get that is to iterate through all active uniforms by index until
|
|
|
|
// one matches the given uniform location.
|
|
|
|
GLenum uniformType = 0;
|
2010-06-10 10:45:00 -07:00
|
|
|
nsAutoArrayPtr<GLchar> uniformName(new GLchar[uniformNameMaxLength]);
|
2010-07-16 07:31:53 -07:00
|
|
|
// this buffer has 16 more bytes to be able to store [index] at the end.
|
|
|
|
nsAutoArrayPtr<GLchar> uniformNameBracketIndex(new GLchar[uniformNameMaxLength + 16]);
|
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
GLint index;
|
|
|
|
for (index = 0; index < uniforms; ++index) {
|
2010-07-16 07:31:53 -07:00
|
|
|
GLsizei length;
|
|
|
|
GLint size;
|
|
|
|
gl->fGetActiveUniform(progname, index, uniformNameMaxLength, &length,
|
|
|
|
&size, &uniformType, uniformName);
|
2010-06-01 23:09:19 -07:00
|
|
|
if (gl->fGetUniformLocation(progname, uniformName) == location->Location())
|
|
|
|
break;
|
2010-07-16 07:31:53 -07:00
|
|
|
|
|
|
|
// now we handle the case of array uniforms. In that case, fGetActiveUniform returned as 'size'
|
|
|
|
// the biggest index used plus one, so we need to loop over that. The 0 index has already been handled above,
|
|
|
|
// so we can start at one. For each index, we construct the string uniformName + "[" + index + "]".
|
|
|
|
if (size > 1) {
|
|
|
|
bool found_it = false;
|
|
|
|
if (uniformName[length - 1] == ']') { // if uniformName ends in [0]
|
|
|
|
// remove the [0] at the end
|
|
|
|
length -= 3;
|
|
|
|
uniformName[length] = 0;
|
|
|
|
}
|
|
|
|
for (GLint arrayIndex = 1; arrayIndex < size; arrayIndex++) {
|
|
|
|
sprintf(uniformNameBracketIndex.get(), "%s[%d]", uniformName.get(), arrayIndex);
|
|
|
|
if (gl->fGetUniformLocation(progname, uniformNameBracketIndex) == location->Location()) {
|
|
|
|
found_it = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (found_it) break;
|
|
|
|
}
|
2010-06-01 23:09:19 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
if (index == uniforms)
|
2010-05-15 06:55:45 -07:00
|
|
|
return NS_ERROR_FAILURE; // XXX GL error? shouldn't happen.
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
GLenum baseType;
|
|
|
|
GLint unitSize;
|
2010-06-01 23:09:19 -07:00
|
|
|
if (!BaseTypeAndSizeFromUniformType(uniformType, &baseType, &unitSize))
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// this should never happen
|
|
|
|
if (unitSize > 16)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (baseType == LOCAL_GL_FLOAT) {
|
2010-08-25 05:17:08 -07:00
|
|
|
GLfloat fv[16] = { GLfloat(0) };
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->fGetUniformfv(progname, location->Location(), fv);
|
2010-06-19 07:43:40 -07:00
|
|
|
if (unitSize == 1) {
|
|
|
|
wrval->SetAsFloat(fv[0]);
|
|
|
|
} else {
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_FLOAT, nsnull,
|
|
|
|
unitSize, static_cast<void*>(fv));
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
} else if (baseType == LOCAL_GL_INT) {
|
2010-08-25 05:17:08 -07:00
|
|
|
GLint iv[16] = { 0 };
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->fGetUniformiv(progname, location->Location(), iv);
|
2010-06-19 07:43:40 -07:00
|
|
|
if (unitSize == 1) {
|
|
|
|
wrval->SetAsInt32(iv[0]);
|
|
|
|
} else {
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_INT32, nsnull,
|
|
|
|
unitSize, static_cast<void*>(iv));
|
|
|
|
}
|
|
|
|
} else if (baseType == LOCAL_GL_BOOL) {
|
2010-08-25 05:17:08 -07:00
|
|
|
GLint iv[16] = { 0 };
|
2010-06-19 07:43:40 -07:00
|
|
|
gl->fGetUniformiv(progname, location->Location(), iv);
|
|
|
|
if (unitSize == 1) {
|
|
|
|
wrval->SetAsBool(PRBool(iv[0]));
|
|
|
|
} else {
|
2010-08-25 05:17:08 -07:00
|
|
|
PRUint8 uv[16] = { 0 };
|
2010-06-19 07:43:40 -07:00
|
|
|
for (int k = 0; k < unitSize; k++)
|
|
|
|
uv[k] = PRUint8(iv[k]);
|
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_UINT8, nsnull,
|
|
|
|
unitSize, static_cast<void*>(uv));
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
} else {
|
2010-06-19 07:43:40 -07:00
|
|
|
wrval->SetAsVoid();
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-06-19 07:43:40 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLContext::GetUniformLocation(nsIWebGLProgram *pobj, const nsAString& name, nsIWebGLUniformLocation **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLProgram *prog;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("getUniformLocation: program", pobj, &prog, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
GLint intlocation = gl->fGetUniformLocation(progname, NS_LossyConvertUTF16toASCII(name).get());
|
|
|
|
|
2010-06-08 14:25:27 -07:00
|
|
|
nsRefPtr<nsIWebGLUniformLocation> loc = prog->GetUniformLocationObject(intlocation);
|
|
|
|
*retval = loc.forget().get();
|
2010-06-01 23:09:19 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-08-23 14:03:49 -07:00
|
|
|
WebGLContext::GetVertexAttrib(WebGLuint index, WebGLenum pname, nsIVariant **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-09-13 08:55:07 -07:00
|
|
|
if (index >= mAttribBuffers.Length())
|
|
|
|
return ErrorInvalidValue("getVertexAttrib: invalid index");
|
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
2010-09-13 08:55:07 -07:00
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING:
|
|
|
|
wrval->SetAsISupports(mAttribBuffers[index].buf);
|
|
|
|
break;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_SIZE:
|
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_STRIDE:
|
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_TYPE:
|
|
|
|
{
|
2010-06-01 23:09:19 -07:00
|
|
|
PRInt32 i = 0;
|
|
|
|
gl->fGetVertexAttribiv(index, pname, (GLint*) &i);
|
2010-08-23 14:03:49 -07:00
|
|
|
wrval->SetAsInt32(i);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCAL_GL_CURRENT_VERTEX_ATTRIB:
|
|
|
|
{
|
2010-09-02 07:34:08 -07:00
|
|
|
WebGLfloat vec[4] = {0, 0, 0, 1};
|
|
|
|
if (index) {
|
|
|
|
gl->fGetVertexAttribfv(index, LOCAL_GL_CURRENT_VERTEX_ATTRIB, &vec[0]);
|
|
|
|
} else {
|
|
|
|
vec[0] = mVertexAttrib0Vector[0];
|
|
|
|
vec[1] = mVertexAttrib0Vector[1];
|
|
|
|
vec[2] = mVertexAttrib0Vector[2];
|
|
|
|
vec[3] = mVertexAttrib0Vector[3];
|
|
|
|
}
|
2010-08-23 14:03:49 -07:00
|
|
|
wrval->SetAsArray(nsIDataType::VTYPE_FLOAT, nsnull,
|
2010-09-02 07:34:08 -07:00
|
|
|
4, vec);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
break;
|
2010-09-13 08:55:07 -07:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_ENABLED:
|
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_NORMALIZED:
|
|
|
|
{
|
|
|
|
PRInt32 i = 0;
|
|
|
|
gl->fGetVertexAttribiv(index, pname, (GLint*) &i);
|
2010-08-23 14:03:49 -07:00
|
|
|
wrval->SetAsBool(PRBool(i));
|
2010-06-01 23:09:19 -07:00
|
|
|
}
|
|
|
|
break;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
case LOCAL_GL_VERTEX_ATTRIB_ARRAY_POINTER:
|
2010-09-13 08:55:07 -07:00
|
|
|
wrval->SetAsUint32(mAttribBuffers[index].byteOffset);
|
|
|
|
break;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("getVertexAttrib: parameter", pname);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
/* GLuint getVertexAttribOffset (in GLuint index, in GLenum pname); */
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::GetVertexAttribOffset(WebGLuint index, WebGLenum pname, WebGLuint *retval)
|
2009-09-17 23:01:07 -07:00
|
|
|
{
|
2010-09-13 08:55:07 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
if (index >= mAttribBuffers.Length())
|
|
|
|
return ErrorInvalidValue("getVertexAttribOffset: invalid index");
|
|
|
|
|
|
|
|
if (pname != LOCAL_GL_VERTEX_ATTRIB_ARRAY_POINTER)
|
|
|
|
return ErrorInvalidEnum("getVertexAttribOffset: bad parameter");
|
|
|
|
|
|
|
|
*retval = mAttribBuffers[index].byteOffset;
|
|
|
|
return NS_OK;
|
2009-09-17 23:01:07 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::Hint(WebGLenum target, WebGLenum mode)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-09-13 08:53:52 -07:00
|
|
|
return ErrorInvalidEnum("hint: invalid hint");
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsBuffer(nsIWebGLBuffer *bobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLBuffer>("isBuffer", bobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsFramebuffer(nsIWebGLFramebuffer *fbobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLFramebuffer>("isFramebuffer", fbobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsProgram(nsIWebGLProgram *pobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLProgram>("isProgram", pobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsRenderbuffer(nsIWebGLRenderbuffer *rbobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLRenderbuffer>("isRenderBuffer", rbobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsShader(nsIWebGLShader *sobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLShader>("isShader", sobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::IsTexture(nsIWebGLTexture *tobj, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
PRBool isDeleted;
|
2010-07-16 07:30:32 -07:00
|
|
|
*retval = CanGetConcreteObject<WebGLTexture>("isTexture", tobj, 0, &isDeleted) && !isDeleted;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-08 11:45:23 -07:00
|
|
|
WebGLContext::IsEnabled(WebGLenum cap, WebGLboolean *retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
|
|
|
if (!ValidateCapabilityEnum(cap, "isEnabled"))
|
2010-06-30 08:49:59 -07:00
|
|
|
return NS_OK;
|
2010-06-08 11:45:23 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
2010-06-08 11:45:23 -07:00
|
|
|
*retval = gl->fIsEnabled(cap);
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_1(LineWidth, LineWidth, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::LinkProgram(nsIWebGLProgram *pobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
GLuint progname;
|
2010-06-04 12:03:33 -07:00
|
|
|
WebGLProgram *program;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("linkProgram", pobj, &program, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-15 08:49:34 -07:00
|
|
|
if (!program->NextGeneration())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (!program->HasBothShaderTypesAttached()) {
|
|
|
|
program->SetLinkStatus(PR_FALSE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-06-04 12:03:33 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fLinkProgram(progname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
GLint ok;
|
|
|
|
gl->fGetProgramiv(progname, LOCAL_GL_LINK_STATUS, &ok);
|
2010-06-10 10:45:00 -07:00
|
|
|
if (ok) {
|
|
|
|
program->SetLinkStatus(PR_TRUE);
|
|
|
|
program->UpdateInfo(gl);
|
|
|
|
} else {
|
|
|
|
program->SetLinkStatus(PR_FALSE);
|
|
|
|
}
|
2010-06-04 12:03:33 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::PixelStorei(WebGLenum pname, WebGLint param)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-06-15 08:59:39 -07:00
|
|
|
switch (pname) {
|
|
|
|
case UNPACK_FLIP_Y_WEBGL:
|
|
|
|
mPixelStoreFlipY = (param != 0);
|
|
|
|
break;
|
|
|
|
case UNPACK_PREMULTIPLY_ALPHA_WEBGL:
|
|
|
|
mPixelStorePremultiplyAlpha = (param != 0);
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_PACK_ALIGNMENT:
|
|
|
|
case LOCAL_GL_UNPACK_ALIGNMENT:
|
|
|
|
if (param != 1 &&
|
|
|
|
param != 2 &&
|
|
|
|
param != 4 &&
|
|
|
|
param != 8)
|
|
|
|
return ErrorInvalidValue("PixelStorei: invalid pack/unpack alignment value");
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fPixelStorei(pname, param);
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("PixelStorei: parameter", pname);
|
2010-06-15 08:59:39 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-06-15 08:59:39 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_2(PolygonOffset, PolygonOffset, WebGLfloat, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:46:12 -07:00
|
|
|
WebGLContext::ReadPixels(PRInt32 dummy)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-06-19 07:46:12 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 08:25:42 -07:00
|
|
|
nsresult
|
2010-06-19 07:46:12 -07:00
|
|
|
WebGLContext::ReadPixels_base(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type, void *data, PRUint32 byteLength)
|
|
|
|
{
|
2010-06-15 14:38:05 -07:00
|
|
|
if (HTMLCanvasElement()->IsWriteOnly() && !nsContentUtils::IsCallerTrustedForRead()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
LogMessage(mVerbose, "ReadPixels: Not allowed");
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
2010-06-19 07:46:12 -07:00
|
|
|
if (width < 0 || height < 0)
|
|
|
|
return ErrorInvalidValue("ReadPixels: negative size passed");
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLsizei boundWidth = mBoundFramebuffer ? mBoundFramebuffer->width() : mWidth;
|
|
|
|
WebGLsizei boundHeight = mBoundFramebuffer ? mBoundFramebuffer->height() : mHeight;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
PRUint32 size = 0;
|
|
|
|
switch (format) {
|
|
|
|
case LOCAL_GL_ALPHA:
|
|
|
|
size = 1;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_RGB:
|
|
|
|
size = 3;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_RGBA:
|
|
|
|
size = 4;
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("readPixels: format", format);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
switch (type) {
|
|
|
|
// case LOCAL_GL_UNSIGNED_SHORT_4_4_4_4:
|
|
|
|
// case LOCAL_GL_UNSIGNED_SHORT_5_5_5_1:
|
|
|
|
// case LOCAL_GL_UNSIGNED_SHORT_5_6_5:
|
|
|
|
case LOCAL_GL_UNSIGNED_BYTE:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("ReadPixels: type", type);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
MakeContextCurrent();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-26 16:53:15 -07:00
|
|
|
PRUint32 packAlignment;
|
|
|
|
gl->fGetIntegerv(LOCAL_GL_PACK_ALIGNMENT, (GLint*) &packAlignment);
|
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_plainRowSize = CheckedUint32(width) * size;
|
2010-05-26 16:53:15 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
// alignedRowSize = row size rounded up to next multiple of packAlignment
|
|
|
|
CheckedUint32 checked_alignedRowSize
|
|
|
|
= ((checked_plainRowSize + packAlignment-1) / packAlignment) * packAlignment;
|
|
|
|
|
|
|
|
CheckedUint32 checked_neededByteLength
|
|
|
|
= (height-1) * checked_alignedRowSize + checked_plainRowSize;
|
2010-05-26 16:53:15 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (!checked_neededByteLength.valid())
|
|
|
|
return ErrorInvalidOperation("ReadPixels: integer overflow computing the needed buffer size");
|
2010-06-19 07:46:12 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (checked_neededByteLength.value() > byteLength)
|
2010-06-19 07:46:12 -07:00
|
|
|
return ErrorInvalidOperation("ReadPixels: buffer too small");
|
|
|
|
|
|
|
|
if (CanvasUtils::CheckSaneSubrectSize(x, y, width, height, boundWidth, boundHeight)) {
|
|
|
|
// the easy case: we're not reading out-of-range pixels
|
|
|
|
gl->fReadPixels(x, y, width, height, format, type, data);
|
|
|
|
} else {
|
|
|
|
// the rectangle doesn't fit entirely in the bound buffer. We then have to set to zero the part
|
|
|
|
// of the buffer that correspond to out-of-range pixels. We don't want to rely on system OpenGL
|
|
|
|
// to do that for us, because passing out of range parameters to a buggy OpenGL implementation
|
|
|
|
// could conceivably allow to read memory we shouldn't be allowed to read. So we manually initialize
|
|
|
|
// the buffer to zero and compute the parameters to pass to OpenGL. We have to use an intermediate buffer
|
|
|
|
// to accomodate the potentially different strides (widths).
|
|
|
|
|
|
|
|
// zero the whole destination buffer. Too bad for the part that's going to be overwritten, we're not
|
|
|
|
// 100% efficient here, but in practice this is a quite rare case anyway.
|
|
|
|
memset(data, 0, byteLength);
|
|
|
|
|
|
|
|
if ( x >= boundWidth
|
|
|
|
|| x+width <= 0
|
|
|
|
|| y >= boundHeight
|
|
|
|
|| y+height <= 0)
|
|
|
|
{
|
|
|
|
// we are completely outside of range, can exit now with buffer filled with zeros
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// compute the parameters of the subrect we're actually going to call glReadPixels on
|
|
|
|
GLint subrect_x = PR_MAX(x, 0);
|
|
|
|
GLint subrect_end_x = PR_MIN(x+width, boundWidth);
|
|
|
|
GLsizei subrect_width = subrect_end_x - subrect_x;
|
|
|
|
|
|
|
|
GLint subrect_y = PR_MAX(y, 0);
|
|
|
|
GLint subrect_end_y = PR_MIN(y+height, boundHeight);
|
|
|
|
GLsizei subrect_height = subrect_end_y - subrect_y;
|
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (subrect_width < 0 || subrect_height < 0 ||
|
2010-08-25 05:16:04 -07:00
|
|
|
subrect_width > width || subrect_height > height)
|
2010-07-03 15:32:19 -07:00
|
|
|
return ErrorInvalidOperation("ReadPixels: integer overflow computing clipped rect size");
|
|
|
|
|
|
|
|
// now we know that subrect_width is in the [0..width] interval, and same for heights.
|
|
|
|
|
2010-06-19 07:46:12 -07:00
|
|
|
// now, same computation as above to find the size of the intermediate buffer to allocate for the subrect
|
2010-07-03 15:32:19 -07:00
|
|
|
// no need to check again for integer overflow here, since we already know the sizes aren't greater than before
|
2010-06-19 07:46:12 -07:00
|
|
|
PRUint32 subrect_plainRowSize = subrect_width * size;
|
|
|
|
PRUint32 subrect_alignedRowSize = (subrect_plainRowSize + packAlignment-1) &
|
|
|
|
~PRUint32(packAlignment-1);
|
|
|
|
PRUint32 subrect_byteLength = (subrect_height-1)*subrect_alignedRowSize + subrect_plainRowSize;
|
|
|
|
|
|
|
|
// create subrect buffer, call glReadPixels, copy pixels into destination buffer, delete subrect buffer
|
|
|
|
GLubyte *subrect_data = new GLubyte[subrect_byteLength];
|
|
|
|
gl->fReadPixels(subrect_x, subrect_y, subrect_width, subrect_height, format, type, subrect_data);
|
2010-07-03 15:32:19 -07:00
|
|
|
|
|
|
|
// notice that this for loop terminates because we already checked that subrect_height is at most height
|
2010-06-19 07:46:12 -07:00
|
|
|
for (GLint y_inside_subrect = 0; y_inside_subrect < subrect_height; ++y_inside_subrect) {
|
|
|
|
GLint subrect_x_in_dest_buffer = subrect_x - x;
|
|
|
|
GLint subrect_y_in_dest_buffer = subrect_y - y;
|
|
|
|
memcpy(static_cast<GLubyte*>(data)
|
2010-07-03 15:32:19 -07:00
|
|
|
+ checked_alignedRowSize.value() * (subrect_y_in_dest_buffer + y_inside_subrect)
|
2010-06-19 07:46:12 -07:00
|
|
|
+ size * subrect_x_in_dest_buffer, // destination
|
|
|
|
subrect_data + subrect_alignedRowSize * y_inside_subrect, // source
|
|
|
|
subrect_plainRowSize); // size
|
|
|
|
}
|
|
|
|
delete [] subrect_data;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::ReadPixels_array(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type, js::TypedArray *pixels)
|
|
|
|
{
|
|
|
|
return ReadPixels_base(x, y, width, height, format, type,
|
|
|
|
pixels ? pixels->data : 0,
|
|
|
|
pixels ? pixels->byteLength : 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::ReadPixels_buf(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type, js::ArrayBuffer *pixels)
|
|
|
|
{
|
|
|
|
return ReadPixels_base(x, y, width, height, format, type,
|
|
|
|
pixels ? pixels->data : 0,
|
|
|
|
pixels ? pixels->byteLength : 0);
|
|
|
|
}
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::RenderbufferStorage(WebGLenum target, WebGLenum internalformat, WebGLsizei width, WebGLsizei height)
|
2010-05-15 05:07:30 -07:00
|
|
|
{
|
2010-05-15 06:55:45 -07:00
|
|
|
if (target != LOCAL_GL_RENDERBUFFER)
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("RenderbufferStorage: target", target);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
|
|
|
switch (internalformat) {
|
|
|
|
case LOCAL_GL_RGBA4:
|
|
|
|
// XXX case LOCAL_GL_RGB565:
|
|
|
|
case LOCAL_GL_RGB5_A1:
|
2010-06-01 23:09:19 -07:00
|
|
|
case LOCAL_GL_DEPTH_COMPONENT:
|
2010-05-15 06:55:45 -07:00
|
|
|
case LOCAL_GL_DEPTH_COMPONENT16:
|
|
|
|
case LOCAL_GL_STENCIL_INDEX8:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("RenderbufferStorage: internalformat", internalformat);
|
2010-05-15 06:55:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (width <= 0 || height <= 0)
|
|
|
|
return ErrorInvalidValue("RenderbufferStorage: width and height must be > 0");
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
if (mBoundRenderbuffer)
|
|
|
|
mBoundRenderbuffer->setDimensions(width, height);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fRenderbufferStorage(target, internalformat, width, height);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-09-02 07:30:26 -07:00
|
|
|
// now we need to initialize the renderbuffer to 0 as per the thread "about RenderBufferStorage"
|
|
|
|
// on the public_webgl list
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-03 15:33:05 -07:00
|
|
|
GL_SAME_METHOD_2(SampleCoverage, SampleCoverage, WebGLfloat, WebGLboolean)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::Scissor(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height)
|
|
|
|
{
|
|
|
|
if (width < 0 || height < 0)
|
|
|
|
return ErrorInvalidValue("Scissor: negative size");
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fScissor(x, y, width, height);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::StencilFunc(WebGLenum func, WebGLint ref, WebGLuint mask)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateComparisonEnum(func, "stencilFunc: func"))
|
|
|
|
return NS_OK;
|
2010-06-30 08:48:30 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilFunc(func, ref, mask);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::StencilFuncSeparate(WebGLenum face, WebGLenum func, WebGLint ref, WebGLuint mask)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateFaceEnum(face, "stencilFuncSeparate: face") ||
|
|
|
|
!ValidateComparisonEnum(func, "stencilFuncSeparate: func"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilFuncSeparate(face, func, ref, mask);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
GL_SAME_METHOD_1(StencilMask, StencilMask, WebGLuint)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::StencilMaskSeparate(WebGLenum face, WebGLuint mask)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateFaceEnum(face, "stencilMaskSeparate: face"))
|
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilMaskSeparate(face, mask);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::StencilOp(WebGLenum sfail, WebGLenum dpfail, WebGLenum dppass)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateStencilOpEnum(sfail, "stencilOp: sfail") ||
|
|
|
|
!ValidateStencilOpEnum(dpfail, "stencilOp: dpfail") ||
|
|
|
|
!ValidateStencilOpEnum(dppass, "stencilOp: dppass"))
|
|
|
|
return NS_OK;
|
2010-06-30 08:48:30 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilOp(sfail, dpfail, dppass);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::StencilOpSeparate(WebGLenum face, WebGLenum sfail, WebGLenum dpfail, WebGLenum dppass)
|
|
|
|
{
|
2010-06-30 08:49:59 -07:00
|
|
|
if (!ValidateFaceEnum(face, "stencilOpSeparate: face") ||
|
|
|
|
!ValidateStencilOpEnum(sfail, "stencilOpSeparate: sfail") ||
|
|
|
|
!ValidateStencilOpEnum(dpfail, "stencilOpSeparate: dpfail") ||
|
|
|
|
!ValidateStencilOpEnum(dppass, "stencilOpSeparate: dppass"))
|
|
|
|
return NS_OK;
|
2010-06-30 08:48:30 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fStencilOpSeparate(face, sfail, dpfail, dppass);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-19 07:47:53 -07:00
|
|
|
template<int format>
|
|
|
|
inline void convert_pixel(PRUint8* dst, const PRUint8* src)
|
|
|
|
{
|
|
|
|
// since has_alpha is a compile time constant, any if(has_alpha) evaluates
|
|
|
|
// at compile time, so has zero runtime cost.
|
|
|
|
enum { has_alpha = format == gfxASurface::ImageFormatARGB32 };
|
|
|
|
|
|
|
|
#ifdef IS_LITTLE_ENDIAN
|
|
|
|
PRUint8 b = *src++;
|
|
|
|
PRUint8 g = *src++;
|
|
|
|
PRUint8 r = *src++;
|
|
|
|
PRUint8 a = *src;
|
|
|
|
#else
|
|
|
|
PRUint8 a = *src++;
|
|
|
|
PRUint8 r = *src++;
|
|
|
|
PRUint8 g = *src++;
|
|
|
|
PRUint8 b = *src;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (has_alpha) {
|
|
|
|
// Convert to non-premultiplied color
|
|
|
|
if (a != 0) {
|
|
|
|
r = (r * 255) / a;
|
|
|
|
g = (g * 255) / a;
|
|
|
|
b = (b * 255) / a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*dst++ = r;
|
|
|
|
*dst++ = g;
|
|
|
|
*dst++ = b;
|
|
|
|
if (has_alpha)
|
|
|
|
*dst = a;
|
|
|
|
else
|
|
|
|
*dst = 255;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
nsresult
|
2010-01-22 13:34:25 -08:00
|
|
|
WebGLContext::DOMElementToImageSurface(nsIDOMElement *imageOrCanvas,
|
|
|
|
gfxImageSurface **imageOut,
|
|
|
|
PRBool flipY, PRBool premultiplyAlpha)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
gfxImageSurface *surf = nsnull;
|
|
|
|
|
|
|
|
nsLayoutUtils::SurfaceFromElementResult res =
|
|
|
|
nsLayoutUtils::SurfaceFromElement(imageOrCanvas,
|
|
|
|
nsLayoutUtils::SFE_WANT_NEW_SURFACE | nsLayoutUtils::SFE_WANT_IMAGE_SURFACE);
|
|
|
|
if (!res.mSurface)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-15 14:38:05 -07:00
|
|
|
CanvasUtils::DoDrawImageSecurityCheck(HTMLCanvasElement(), res.mPrincipal, res.mIsWriteOnly);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (res.mSurface->GetType() != gfxASurface::SurfaceTypeImage) {
|
|
|
|
// SurfaceFromElement lied!
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
surf = static_cast<gfxImageSurface*>(res.mSurface.get());
|
|
|
|
|
|
|
|
PRInt32 width, height;
|
|
|
|
width = res.mSize.width;
|
|
|
|
height = res.mSize.height;
|
|
|
|
|
|
|
|
if (width <= 0 || height <= 0)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-19 07:47:53 -07:00
|
|
|
// this wants some SSE love
|
|
|
|
int row1 = 0, row2 = height-1;
|
|
|
|
for (; flipY ? (row1 <= row2) : (row1 < height); row1++, row2--) {
|
|
|
|
PRUint8 *row1_start = surf->Data() + row1 * surf->Stride();
|
|
|
|
PRUint8 *row1_end = row1_start + surf->Stride();
|
|
|
|
PRUint8 *row2_start = surf->Data() + row2 * surf->Stride();
|
|
|
|
|
|
|
|
if (flipY == PR_FALSE || row1 == row2) {
|
|
|
|
if (surf->Format() == gfxASurface::ImageFormatARGB32) {
|
|
|
|
for (PRUint8 *row1_ptr = row1_start; row1_ptr != row1_end; row1_ptr += 4) {
|
|
|
|
convert_pixel<gfxASurface::ImageFormatARGB32>(row1_ptr, row1_ptr);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-06-19 07:47:53 -07:00
|
|
|
} else if (surf->Format() == gfxASurface::ImageFormatRGB24) {
|
|
|
|
for (PRUint8 *row1_ptr = row1_start; row1_ptr != row1_end; row1_ptr += 4) {
|
|
|
|
convert_pixel<gfxASurface::ImageFormatRGB24>(row1_ptr, row1_ptr);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-06-19 07:47:53 -07:00
|
|
|
} else {
|
|
|
|
PRUint8 *row1_ptr = row1_start;
|
|
|
|
PRUint8 *row2_ptr = row2_start;
|
|
|
|
PRUint8 tmp[4];
|
|
|
|
if (surf->Format() == gfxASurface::ImageFormatARGB32) {
|
|
|
|
for (; row1_ptr != row1_end; row1_ptr += 4, row2_ptr += 4) {
|
|
|
|
convert_pixel<gfxASurface::ImageFormatARGB32>(tmp, row1_ptr);
|
|
|
|
convert_pixel<gfxASurface::ImageFormatARGB32>(row1_ptr, row2_ptr);
|
|
|
|
*reinterpret_cast<PRUint32*>(row2_ptr) = *reinterpret_cast<PRUint32*>(tmp);
|
|
|
|
}
|
|
|
|
} else if (surf->Format() == gfxASurface::ImageFormatRGB24) {
|
|
|
|
for (; row1_ptr != row1_end; row1_ptr += 4, row2_ptr += 4) {
|
|
|
|
convert_pixel<gfxASurface::ImageFormatRGB24>(tmp, row1_ptr);
|
|
|
|
convert_pixel<gfxASurface::ImageFormatRGB24>(row1_ptr, row2_ptr);
|
|
|
|
*reinterpret_cast<PRUint32*>(row2_ptr) = *reinterpret_cast<PRUint32*>(tmp);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-01 16:33:47 -08:00
|
|
|
res.mSurface.forget();
|
|
|
|
*imageOut = surf;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-16 07:30:32 -07:00
|
|
|
#define OBTAIN_UNIFORM_LOCATION(info) \
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLUniformLocation *location_object; \
|
2010-09-13 08:56:01 -07:00
|
|
|
PRBool isNull; \
|
|
|
|
if (!GetConcreteObject(info, ploc, &location_object, &isNull)) \
|
|
|
|
return NS_OK; \
|
|
|
|
if (isNull) \
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK; \
|
2010-06-04 12:03:37 -07:00
|
|
|
if (mCurrentProgram != location_object->Program()) \
|
2010-07-16 07:31:53 -07:00
|
|
|
return ErrorInvalidOperation("%s: this uniform location doesn't correspond to the current program", info); \
|
2010-06-08 14:25:27 -07:00
|
|
|
if (mCurrentProgram->Generation() != location_object->ProgramGeneration()) \
|
2010-07-16 07:31:53 -07:00
|
|
|
return ErrorInvalidOperation("%s: This uniform location is obsolete since the program has been relinked", info); \
|
2010-06-01 23:09:19 -07:00
|
|
|
GLint location = location_object->Location();
|
|
|
|
|
|
|
|
#define SIMPLE_ARRAY_METHOD_UNIFORM(name, cnt, arrayType, ptrType) \
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP \
|
|
|
|
WebGLContext::name(PRInt32 dummy) { \
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED; \
|
|
|
|
} \
|
|
|
|
NS_IMETHODIMP \
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLContext::name##_array(nsIWebGLUniformLocation *ploc, js::TypedArray *wa) \
|
2010-01-22 13:34:25 -08:00
|
|
|
{ \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-01-22 13:34:25 -08:00
|
|
|
if (!wa || wa->type != js::TypedArray::arrayType) \
|
2010-07-16 07:30:32 -07:00
|
|
|
return ErrorInvalidOperation(#name ": array must be " #arrayType); \
|
2010-01-22 13:34:25 -08:00
|
|
|
if (wa->length == 0 || wa->length % cnt != 0) \
|
2010-09-13 08:55:45 -07:00
|
|
|
return ErrorInvalidValue(#name ": array must be > 0 elements and have a length multiple of %d", cnt); \
|
2010-01-22 13:34:25 -08:00
|
|
|
MakeContextCurrent(); \
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->f##name(location, wa->length / cnt, (ptrType *)wa->data); \
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_OK; \
|
|
|
|
}
|
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
#define SIMPLE_MATRIX_METHOD_UNIFORM(name, dim, arrayType, ptrType) \
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP \
|
|
|
|
WebGLContext::name(PRInt32 dummy) { \
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED; \
|
|
|
|
} \
|
|
|
|
NS_IMETHODIMP \
|
2010-06-01 23:09:19 -07:00
|
|
|
WebGLContext::name##_array(nsIWebGLUniformLocation *ploc, WebGLboolean transpose, js::TypedArray *wa) \
|
2010-01-22 13:34:25 -08:00
|
|
|
{ \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-01-22 13:34:25 -08:00
|
|
|
if (!wa || wa->type != js::TypedArray::arrayType) \
|
2010-08-05 06:55:56 -07:00
|
|
|
return ErrorInvalidValue(#name ": array must be " #arrayType); \
|
2010-01-22 13:34:25 -08:00
|
|
|
if (wa->length == 0 || wa->length % (dim*dim) != 0) \
|
2010-08-05 06:55:56 -07:00
|
|
|
return ErrorInvalidValue(#name ": array length must be >0 and multiple of %d", dim*dim); \
|
2010-07-16 07:30:32 -07:00
|
|
|
if (transpose) \
|
|
|
|
return ErrorInvalidValue(#name ": transpose must be FALSE as per the OpenGL ES 2.0 spec"); \
|
2010-01-22 13:34:25 -08:00
|
|
|
MakeContextCurrent(); \
|
2010-06-01 23:09:19 -07:00
|
|
|
gl->f##name(location, wa->length / (dim*dim), transpose, (ptrType *)wa->data); \
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_OK; \
|
|
|
|
}
|
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
#define SIMPLE_METHOD_UNIFORM_1(glname, name, t1) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(nsIWebGLUniformLocation *ploc, t1 a1) { \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-06-01 23:09:19 -07:00
|
|
|
MakeContextCurrent(); gl->f##glname(location, a1); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SIMPLE_METHOD_UNIFORM_2(glname, name, t1, t2) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(nsIWebGLUniformLocation *ploc, t1 a1, t2 a2) { \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-06-01 23:09:19 -07:00
|
|
|
MakeContextCurrent(); gl->f##glname(location, a1, a2); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SIMPLE_METHOD_UNIFORM_3(glname, name, t1, t2, t3) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(nsIWebGLUniformLocation *ploc, t1 a1, t2 a2, t3 a3) { \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-06-01 23:09:19 -07:00
|
|
|
MakeContextCurrent(); gl->f##glname(location, a1, a2, a3); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SIMPLE_METHOD_UNIFORM_4(glname, name, t1, t2, t3, t4) \
|
|
|
|
NS_IMETHODIMP WebGLContext::name(nsIWebGLUniformLocation *ploc, t1 a1, t2 a2, t3 a3, t4 a4) { \
|
2010-07-16 07:30:32 -07:00
|
|
|
OBTAIN_UNIFORM_LOCATION(#name ": location") \
|
2010-06-01 23:09:19 -07:00
|
|
|
MakeContextCurrent(); gl->f##glname(location, a1, a2, a3, a4); return NS_OK; \
|
|
|
|
}
|
|
|
|
|
|
|
|
SIMPLE_METHOD_UNIFORM_1(Uniform1i, Uniform1i, WebGLint)
|
|
|
|
SIMPLE_METHOD_UNIFORM_2(Uniform2i, Uniform2i, WebGLint, WebGLint)
|
|
|
|
SIMPLE_METHOD_UNIFORM_3(Uniform3i, Uniform3i, WebGLint, WebGLint, WebGLint)
|
|
|
|
SIMPLE_METHOD_UNIFORM_4(Uniform4i, Uniform4i, WebGLint, WebGLint, WebGLint, WebGLint)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
SIMPLE_METHOD_UNIFORM_1(Uniform1f, Uniform1f, WebGLfloat)
|
|
|
|
SIMPLE_METHOD_UNIFORM_2(Uniform2f, Uniform2f, WebGLfloat, WebGLfloat)
|
|
|
|
SIMPLE_METHOD_UNIFORM_3(Uniform3f, Uniform3f, WebGLfloat, WebGLfloat, WebGLfloat)
|
|
|
|
SIMPLE_METHOD_UNIFORM_4(Uniform4f, Uniform4f, WebGLfloat, WebGLfloat, WebGLfloat, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform1iv, 1, TYPE_INT32, WebGLint)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform2iv, 2, TYPE_INT32, WebGLint)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform3iv, 3, TYPE_INT32, WebGLint)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform4iv, 4, TYPE_INT32, WebGLint)
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform1fv, 1, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform2fv, 2, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform3fv, 3, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_UNIFORM(Uniform4fv, 4, TYPE_FLOAT32, WebGLfloat)
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
SIMPLE_MATRIX_METHOD_UNIFORM(UniformMatrix2fv, 2, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_MATRIX_METHOD_UNIFORM(UniformMatrix3fv, 3, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_MATRIX_METHOD_UNIFORM(UniformMatrix4fv, 4, TYPE_FLOAT32, WebGLfloat)
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-09-02 07:34:08 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::VertexAttrib1f(PRUint32 index, WebGLfloat x0)
|
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
if (index) {
|
|
|
|
gl->fVertexAttrib1f(index, x0);
|
|
|
|
} else {
|
|
|
|
mVertexAttrib0Vector[0] = x0;
|
|
|
|
mVertexAttrib0Vector[1] = 0;
|
|
|
|
mVertexAttrib0Vector[2] = 0;
|
|
|
|
mVertexAttrib0Vector[3] = 1;
|
|
|
|
if (gl->IsGLES2())
|
|
|
|
gl->fVertexAttrib1f(index, x0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::VertexAttrib2f(PRUint32 index, WebGLfloat x0, WebGLfloat x1)
|
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
if (index) {
|
|
|
|
gl->fVertexAttrib2f(index, x0, x1);
|
|
|
|
} else {
|
|
|
|
mVertexAttrib0Vector[0] = x0;
|
|
|
|
mVertexAttrib0Vector[1] = x1;
|
|
|
|
mVertexAttrib0Vector[2] = 0;
|
|
|
|
mVertexAttrib0Vector[3] = 1;
|
|
|
|
if (gl->IsGLES2())
|
|
|
|
gl->fVertexAttrib2f(index, x0, x1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::VertexAttrib3f(PRUint32 index, WebGLfloat x0, WebGLfloat x1, WebGLfloat x2)
|
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
if (index) {
|
|
|
|
gl->fVertexAttrib3f(index, x0, x1, x2);
|
|
|
|
} else {
|
|
|
|
mVertexAttrib0Vector[0] = x0;
|
|
|
|
mVertexAttrib0Vector[1] = x1;
|
|
|
|
mVertexAttrib0Vector[2] = x2;
|
|
|
|
mVertexAttrib0Vector[3] = 1;
|
|
|
|
if (gl->IsGLES2())
|
|
|
|
gl->fVertexAttrib3f(index, x0, x1, x2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::VertexAttrib4f(PRUint32 index, WebGLfloat x0, WebGLfloat x1,
|
|
|
|
WebGLfloat x2, WebGLfloat x3)
|
|
|
|
{
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
if (index) {
|
|
|
|
gl->fVertexAttrib4f(index, x0, x1, x2, x3);
|
|
|
|
} else {
|
|
|
|
mVertexAttrib0Vector[0] = x0;
|
|
|
|
mVertexAttrib0Vector[1] = x1;
|
|
|
|
mVertexAttrib0Vector[2] = x2;
|
|
|
|
mVertexAttrib0Vector[3] = x3;
|
|
|
|
if (gl->IsGLES2())
|
|
|
|
gl->fVertexAttrib4f(index, x0, x1, x2, x3);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SIMPLE_ARRAY_METHOD_NO_COUNT(name, cnt, arrayType, ptrType) \
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
WebGLContext::name(PRInt32 dummy) { \
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED; \
|
|
|
|
} \
|
|
|
|
NS_IMETHODIMP \
|
|
|
|
WebGLContext::name##_array(WebGLuint idx, js::TypedArray *wa) \
|
|
|
|
{ \
|
|
|
|
if (!wa || wa->type != js::TypedArray::arrayType) \
|
|
|
|
return ErrorInvalidOperation(#name ": array must be " #arrayType); \
|
|
|
|
if (wa->length < cnt) \
|
|
|
|
return ErrorInvalidOperation(#name ": array must be >= %d elements", cnt); \
|
|
|
|
MakeContextCurrent(); \
|
|
|
|
ptrType *ptr = (ptrType *)wa->data; \
|
|
|
|
if (idx) { \
|
|
|
|
gl->f##name(idx, ptr); \
|
|
|
|
} else { \
|
|
|
|
mVertexAttrib0Vector[0] = ptr[0]; \
|
|
|
|
mVertexAttrib0Vector[1] = cnt > 1 ? ptr[1] : ptrType(0); \
|
|
|
|
mVertexAttrib0Vector[2] = cnt > 2 ? ptr[2] : ptrType(0); \
|
|
|
|
mVertexAttrib0Vector[3] = cnt > 3 ? ptr[3] : ptrType(1); \
|
|
|
|
if (gl->IsGLES2()) \
|
|
|
|
gl->f##name(idx, ptr); \
|
|
|
|
} \
|
|
|
|
return NS_OK; \
|
|
|
|
}
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
SIMPLE_ARRAY_METHOD_NO_COUNT(VertexAttrib1fv, 1, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_NO_COUNT(VertexAttrib2fv, 2, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_NO_COUNT(VertexAttrib3fv, 3, TYPE_FLOAT32, WebGLfloat)
|
|
|
|
SIMPLE_ARRAY_METHOD_NO_COUNT(VertexAttrib4fv, 4, TYPE_FLOAT32, WebGLfloat)
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::UseProgram(nsIWebGLProgram *pobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLProgram *prog;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-06-04 12:03:33 -07:00
|
|
|
PRBool isNull;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("useProgram", pobj, &prog, &progname, &isNull))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
if (isNull) {
|
|
|
|
gl->fUseProgram(0);
|
|
|
|
mCurrentProgram = nsnull;
|
|
|
|
} else {
|
|
|
|
if (!prog->LinkStatus())
|
|
|
|
return ErrorInvalidOperation("UseProgram: program was not linked successfully");
|
|
|
|
gl->fUseProgram(progname);
|
|
|
|
mCurrentProgram = prog;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::ValidateProgram(nsIWebGLProgram *pobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint progname;
|
2010-07-16 07:30:32 -07:00
|
|
|
if (!GetGLName<WebGLProgram>("validateProgram", pobj, &progname))
|
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fValidateProgram(progname);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-17 23:01:07 -07:00
|
|
|
WebGLContext::CreateFramebuffer(nsIWebGLFramebuffer **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
GLuint name;
|
|
|
|
gl->fGenFramebuffers(1, &name);
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLFramebuffer *globj = new WebGLFramebuffer(this, name);
|
|
|
|
NS_ADDREF(*retval = globj);
|
|
|
|
mMapFramebuffers.Put(name, globj);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-17 23:01:07 -07:00
|
|
|
WebGLContext::CreateRenderbuffer(nsIWebGLRenderbuffer **retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = 0;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
GLuint name;
|
|
|
|
gl->fGenRenderbuffers(1, &name);
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLRenderbuffer *globj = new WebGLRenderbuffer(this, name);
|
|
|
|
NS_ADDREF(*retval = globj);
|
|
|
|
mMapRenderbuffers.Put(name, globj);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-30 08:48:30 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::Viewport(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height)
|
|
|
|
{
|
|
|
|
if (width < 0 || height < 0)
|
|
|
|
return ErrorInvalidOperation("Viewport: negative size");
|
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
gl->fViewport(x, y, width, height);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::CompileShader(nsIWebGLShader *sobj)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-14 20:52:34 -07:00
|
|
|
WebGLShader *shader;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-07-16 12:23:01 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("compileShader", sobj, &shader, &shadername))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
2010-08-09 23:51:56 -07:00
|
|
|
#if defined(USE_ANGLE)
|
2010-07-14 20:52:34 -07:00
|
|
|
if (shader->NeedsTranslation() && mShaderValidation) {
|
|
|
|
ShHandle compiler = 0;
|
|
|
|
int debugFlags = 0;
|
2010-10-09 12:44:25 -07:00
|
|
|
ShBuiltInResources resources;
|
|
|
|
memset(&resources, 0, sizeof(ShBuiltInResources));
|
|
|
|
|
|
|
|
resources.MaxVertexAttribs = mGLMaxVertexAttribs;
|
|
|
|
resources.MaxVertexUniformVectors = mGLMaxVertexUniformVectors;
|
|
|
|
resources.MaxVaryingVectors = mGLMaxVaryingVectors;
|
|
|
|
resources.MaxVertexTextureImageUnits = mGLMaxVertexTextureImageUnits;
|
|
|
|
resources.MaxCombinedTextureImageUnits = mGLMaxTextureUnits;
|
|
|
|
resources.MaxTextureImageUnits = mGLMaxTextureImageUnits;
|
|
|
|
resources.MaxFragmentUniformVectors = mGLMaxFragmentUniformVectors;
|
|
|
|
resources.MaxDrawBuffers = 1;
|
|
|
|
|
|
|
|
compiler = ShConstructCompiler((ShShaderType) shader->ShaderType(),
|
|
|
|
SH_WEBGL_SPEC,
|
|
|
|
&resources);
|
2010-07-14 20:52:34 -07:00
|
|
|
|
2010-08-14 12:59:29 -07:00
|
|
|
nsPromiseFlatCString src(shader->Source());
|
2010-07-14 20:52:34 -07:00
|
|
|
const char *s = src.get();
|
|
|
|
|
2010-10-09 12:44:25 -07:00
|
|
|
if (!ShCompile(compiler, &s, 1, SH_OBJECT_CODE)) {
|
|
|
|
int len = 0;
|
|
|
|
ShGetInfo(compiler, SH_INFO_LOG_LENGTH, &len);
|
|
|
|
|
|
|
|
if (len) {
|
|
|
|
nsCAutoString info(len);
|
|
|
|
ShGetInfoLog(compiler, info.BeginWriting());
|
|
|
|
shader->SetTranslationFailure(info);
|
2010-08-09 23:51:56 -07:00
|
|
|
} else {
|
|
|
|
shader->SetTranslationFailure(NS_LITERAL_CSTRING("Internal error: failed to get shader info log"));
|
|
|
|
}
|
2010-07-14 20:52:34 -07:00
|
|
|
ShDestruct(compiler);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-08-30 16:56:40 -07:00
|
|
|
/* If the GL context is really GLES2, we want to use the original provided code,
|
|
|
|
* since it's actually GLES2. We still need to validate it however, which is
|
|
|
|
* why we ran it through the above, but we don't want the desktop GLSL.
|
|
|
|
*/
|
|
|
|
if (!gl->IsGLES2()) {
|
2010-10-09 12:44:25 -07:00
|
|
|
int len = 0;
|
|
|
|
ShGetInfo(compiler, SH_OBJECT_CODE_LENGTH, &len);
|
|
|
|
|
|
|
|
nsCAutoString translatedSrc(len);
|
|
|
|
|
|
|
|
ShGetObjectCode(compiler, translatedSrc.BeginWriting());
|
|
|
|
|
|
|
|
nsPromiseFlatCString translatedSrc2(translatedSrc);
|
|
|
|
const char *ts = translatedSrc2.get();
|
|
|
|
|
|
|
|
gl->fShaderSource(shadername, 1, &ts, NULL);
|
|
|
|
} else {
|
|
|
|
gl->fShaderSource(shadername, 1, &s, NULL);
|
2010-08-30 16:56:40 -07:00
|
|
|
}
|
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
shader->SetTranslationSuccess();
|
|
|
|
|
|
|
|
ShDestruct(compiler);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
const char *s = nsDependentCString(shader->Source()).get();
|
|
|
|
gl->fShaderSource(shadername, 1, &s, NULL);
|
|
|
|
shader->SetTranslationSuccess();
|
|
|
|
}
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fCompileShader(shadername);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-09-17 23:01:07 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-19 07:42:43 -07:00
|
|
|
WebGLContext::GetShaderParameter(nsIWebGLShader *sobj, WebGLenum pname, nsIVariant **retval)
|
2009-09-17 23:01:07 -07:00
|
|
|
{
|
2010-08-25 05:17:08 -07:00
|
|
|
*retval = nsnull;
|
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
WebGLShader *shader;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-07-16 12:23:01 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("getShaderParameter: shader", sobj, &shader, &shadername))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
nsCOMPtr<nsIWritableVariant> wrval = do_CreateInstance("@mozilla.org/variant;1");
|
|
|
|
NS_ENSURE_TRUE(wrval, NS_ERROR_FAILURE);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
switch (pname) {
|
|
|
|
case LOCAL_GL_SHADER_TYPE:
|
|
|
|
case LOCAL_GL_INFO_LOG_LENGTH:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetShaderiv(shadername, pname, &i);
|
|
|
|
wrval->SetAsInt32(i);
|
2009-11-18 12:42:35 -08:00
|
|
|
}
|
|
|
|
break;
|
2010-07-14 20:52:34 -07:00
|
|
|
case LOCAL_GL_SHADER_SOURCE_LENGTH:
|
|
|
|
{
|
|
|
|
wrval->SetAsInt32(PRInt32(shader->Source().Length()) + 1);
|
|
|
|
}
|
|
|
|
break;
|
2010-06-01 23:09:19 -07:00
|
|
|
case LOCAL_GL_DELETE_STATUS:
|
|
|
|
case LOCAL_GL_COMPILE_STATUS:
|
|
|
|
{
|
2010-06-19 07:42:43 -07:00
|
|
|
GLint i = 0;
|
|
|
|
gl->fGetShaderiv(shadername, pname, &i);
|
|
|
|
wrval->SetAsBool(PRBool(i));
|
2010-06-01 23:09:19 -07:00
|
|
|
}
|
|
|
|
break;
|
2009-11-18 12:42:35 -08:00
|
|
|
|
|
|
|
default:
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2010-06-19 07:42:43 -07:00
|
|
|
*retval = wrval.forget().get();
|
|
|
|
|
2009-11-18 12:42:35 -08:00
|
|
|
return NS_OK;
|
2009-09-17 23:01:07 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetShaderInfoLog(nsIWebGLShader *sobj, nsAString& retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-14 20:52:34 -07:00
|
|
|
WebGLShader *shader;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-07-16 12:23:01 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("getShaderInfoLog: shader", sobj, &shader, &shadername))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
const nsCString& tlog = shader->TranslationLog();
|
|
|
|
if (!tlog.IsVoid()) {
|
|
|
|
CopyASCIItoUTF16(tlog, retval);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
PRInt32 k = -1;
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetShaderiv(shadername, LOCAL_GL_INFO_LOG_LENGTH, (GLint*) &k);
|
2009-09-02 17:47:49 -07:00
|
|
|
if (k == -1)
|
2010-05-15 06:55:45 -07:00
|
|
|
return NS_ERROR_FAILURE; // XXX GL Error? should never happen.
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (k == 0) {
|
|
|
|
retval.Truncate();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString log;
|
|
|
|
log.SetCapacity(k);
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
gl->fGetShaderInfoLog(shadername, k, (GLint*) &k, (char*) log.BeginWriting());
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
log.SetLength(k);
|
|
|
|
|
|
|
|
CopyASCIItoUTF16(log, retval);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::GetShaderSource(nsIWebGLShader *sobj, nsAString& retval)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-14 20:52:34 -07:00
|
|
|
WebGLShader *shader;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-07-16 12:23:01 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("getShaderSource: shader", sobj, &shader, &shadername))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
CopyASCIItoUTF16(shader->Source(), retval);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-19 13:46:08 -07:00
|
|
|
WebGLContext::ShaderSource(nsIWebGLShader *sobj, const nsAString& source)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-07-14 20:52:34 -07:00
|
|
|
WebGLShader *shader;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint shadername;
|
2010-07-16 12:23:01 -07:00
|
|
|
if (!GetConcreteObjectAndGLName("shaderSource: shader", sobj, &shader, &shadername))
|
2010-07-16 07:30:32 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
shader->SetSource(NS_LossyConvertUTF16toASCII(source));
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
shader->SetNeedsTranslation();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::VertexAttribPointer(WebGLuint index, WebGLint size, WebGLenum type,
|
2010-09-02 07:38:26 -07:00
|
|
|
WebGLboolean normalized, WebGLsizei stride,
|
|
|
|
WebGLsizeiptr byteOffset)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
if (mBoundArrayBuffer == nsnull)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidOperation("VertexAttribPointer: must have valid GL_ARRAY_BUFFER binding");
|
|
|
|
|
2010-09-02 07:38:26 -07:00
|
|
|
WebGLsizei requiredAlignment = 1;
|
2010-05-15 06:55:45 -07:00
|
|
|
switch (type) {
|
|
|
|
case LOCAL_GL_BYTE:
|
|
|
|
case LOCAL_GL_UNSIGNED_BYTE:
|
2010-09-02 07:38:26 -07:00
|
|
|
requiredAlignment = 1;
|
|
|
|
break;
|
2010-05-15 06:55:45 -07:00
|
|
|
case LOCAL_GL_SHORT:
|
|
|
|
case LOCAL_GL_UNSIGNED_SHORT:
|
2010-09-02 07:38:26 -07:00
|
|
|
requiredAlignment = 2;
|
|
|
|
break;
|
2010-05-15 06:55:45 -07:00
|
|
|
// XXX case LOCAL_GL_FIXED:
|
|
|
|
case LOCAL_GL_FLOAT:
|
2010-09-02 07:38:26 -07:00
|
|
|
requiredAlignment = 4;
|
2010-05-15 06:55:45 -07:00
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("VertexAttribPointer: type", type);
|
2010-05-15 06:55:45 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-09-02 07:38:26 -07:00
|
|
|
// requiredAlignment should always be a power of two.
|
|
|
|
WebGLsizei requiredAlignmentMask = requiredAlignment - 1;
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
if (index >= mAttribBuffers.Length())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("VertexAttribPointer: index out of range - %d >= %d", index, mAttribBuffers.Length());
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
if (size < 1 || size > 4)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("VertexAttribPointer: invalid element size");
|
|
|
|
|
2010-09-02 07:38:26 -07:00
|
|
|
if (stride < 0 || stride > 255) // see WebGL spec section 6.6 "Vertex Attribute Data Stride"
|
|
|
|
return ErrorInvalidValue("VertexAttribPointer: negative stride");
|
|
|
|
|
|
|
|
if (byteOffset < 0)
|
|
|
|
return ErrorInvalidValue("VertexAttribPointer: negative offset");
|
|
|
|
|
|
|
|
if (stride & requiredAlignmentMask) {
|
|
|
|
return ErrorInvalidValue("VertexAttribPointer: stride doesn't satisfy the alignment "
|
|
|
|
"requirement of given type");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (byteOffset & requiredAlignmentMask) {
|
|
|
|
return ErrorInvalidValue("VertexAttribPointer: byteOffset doesn't satisfy the alignment "
|
|
|
|
"requirement of given type");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-11-01 16:33:39 -08:00
|
|
|
/* XXX make work with bufferSubData & heterogeneous types
|
2009-09-02 17:47:49 -07:00
|
|
|
if (type != mBoundArrayBuffer->GLType())
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidOperation("VertexAttribPointer: type must match bound VBO type: %d != %d", type, mBoundArrayBuffer->GLType());
|
2009-11-01 16:33:39 -08:00
|
|
|
*/
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
WebGLVertexAttribData &vd = mAttribBuffers[index];
|
|
|
|
|
|
|
|
vd.buf = mBoundArrayBuffer;
|
|
|
|
vd.stride = stride;
|
|
|
|
vd.size = size;
|
2010-06-01 23:09:18 -07:00
|
|
|
vd.byteOffset = byteOffset;
|
|
|
|
vd.type = type;
|
2010-09-02 07:34:08 -07:00
|
|
|
vd.normalized = normalized;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
MakeContextCurrent();
|
|
|
|
|
|
|
|
gl->fVertexAttribPointer(index, size, type, normalized,
|
2009-11-01 16:33:39 -08:00
|
|
|
stride,
|
2010-06-01 23:09:18 -07:00
|
|
|
(void*) (byteOffset));
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-01-22 13:34:25 -08:00
|
|
|
WebGLContext::TexImage2D(PRInt32 dummy)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
nsresult
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexImage2D_base(WebGLenum target, WebGLint level, WebGLenum internalformat,
|
|
|
|
WebGLsizei width, WebGLsizei height, WebGLint border,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
void *data, PRUint32 byteLength)
|
|
|
|
{
|
|
|
|
switch (target) {
|
|
|
|
case LOCAL_GL_TEXTURE_2D:
|
2010-08-23 14:03:35 -07:00
|
|
|
break;
|
2010-01-22 13:34:25 -08:00
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
|
2010-08-23 14:03:35 -07:00
|
|
|
if (width != height)
|
|
|
|
return ErrorInvalidValue("texImage2D: with cube map targets, width and height must be equal");
|
2010-01-22 13:34:25 -08:00
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("texImage2D: target", target);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
switch (internalformat) {
|
|
|
|
case LOCAL_GL_RGB:
|
|
|
|
case LOCAL_GL_RGBA:
|
|
|
|
case LOCAL_GL_ALPHA:
|
|
|
|
case LOCAL_GL_LUMINANCE:
|
|
|
|
case LOCAL_GL_LUMINANCE_ALPHA:
|
|
|
|
break;
|
|
|
|
default:
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidEnumInfo("texImage2D: internal format", internalformat);
|
2010-01-22 13:34:25 -08:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
if (format != internalformat)
|
|
|
|
return ErrorInvalidOperation("texImage2D: format does not match internalformat");
|
|
|
|
|
|
|
|
WebGLsizei maxTextureSize = target == LOCAL_GL_TEXTURE_2D ? mGLMaxTextureSize : mGLMaxCubeMapTextureSize;
|
|
|
|
|
|
|
|
if (level < 0)
|
|
|
|
return ErrorInvalidValue("texImage2D: level must be >= 0");
|
|
|
|
|
|
|
|
if ((1 << level) > maxTextureSize)
|
|
|
|
return ErrorInvalidValue("texImage2D: 2^level exceeds maximum texture size");
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
if (width < 0 || height < 0)
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texImage2D: width and height must be >= 0");
|
|
|
|
|
|
|
|
if (width > maxTextureSize || height > maxTextureSize)
|
|
|
|
return ErrorInvalidValue("texImage2D: width or height exceeds maximum texture size");
|
|
|
|
|
|
|
|
if (level >= 1) {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (!(is_pot_assuming_nonnegative(width) &&
|
|
|
|
is_pot_assuming_nonnegative(height)))
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texImage2D: with level > 0, width and height must be powers of two");
|
|
|
|
}
|
2009-11-01 16:33:47 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (border != 0)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("TexImage2D: border must be 0");
|
2009-11-01 16:33:47 -08:00
|
|
|
|
2010-06-30 08:49:59 -07:00
|
|
|
PRUint32 texelSize = 0;
|
|
|
|
if (!ValidateTexFormatAndType(format, type, &texelSize, "texImage2D"))
|
|
|
|
return NS_OK;
|
2009-11-01 16:33:47 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_bytesNeeded = CheckedUint32(width) * height * texelSize;
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
if (!checked_bytesNeeded.valid())
|
|
|
|
return ErrorInvalidOperation("texImage2D: integer overflow computing the needed buffer size");
|
|
|
|
|
|
|
|
PRUint32 bytesNeeded = checked_bytesNeeded.value();
|
2010-08-23 14:03:35 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (byteLength && byteLength < bytesNeeded)
|
2010-07-03 15:32:19 -07:00
|
|
|
return ErrorInvalidOperation("TexImage2D: not enough data for operation (need %d, have %d)",
|
2010-05-15 06:55:45 -07:00
|
|
|
bytesNeeded, byteLength);
|
2009-11-01 16:33:47 -08:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
WebGLTexture *tex = activeBoundTextureForTarget(target);
|
|
|
|
|
|
|
|
if (!tex)
|
|
|
|
return ErrorInvalidOperation("texImage2D: no texture is bound to this target");
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
tex->SetImageInfo(target, level, width, height, format, type);
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
MakeContextCurrent();
|
2009-12-02 13:38:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (byteLength) {
|
|
|
|
gl->fTexImage2D(target, level, internalformat, width, height, border, format, type, data);
|
|
|
|
} else {
|
2010-05-19 13:46:08 -07:00
|
|
|
// We need some zero pages, because GL doesn't guarantee the
|
|
|
|
// contents of a texture allocated with NULL data.
|
|
|
|
// Hopefully calloc will just mmap zero pages here.
|
|
|
|
void *tempZeroData = calloc(1, bytesNeeded);
|
|
|
|
if (!tempZeroData)
|
2010-05-15 06:55:45 -07:00
|
|
|
return SynthesizeGLError(LOCAL_GL_OUT_OF_MEMORY, "texImage2D: could not allocate %d bytes (for zero fill)", bytesNeeded);
|
2010-05-19 13:46:08 -07:00
|
|
|
|
|
|
|
gl->fTexImage2D(target, level, internalformat, width, height, border, format, type, tempZeroData);
|
|
|
|
|
|
|
|
free(tempZeroData);
|
2009-11-01 16:33:47 -08:00
|
|
|
}
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
tex->setDimensions(width, height);
|
2010-05-15 05:07:30 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexImage2D_buf(WebGLenum target, WebGLint level, WebGLenum internalformat,
|
|
|
|
WebGLsizei width, WebGLsizei height, WebGLint border,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
js::ArrayBuffer *pixels)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-01-22 13:34:25 -08:00
|
|
|
return TexImage2D_base(target, level, internalformat, width, height, border, format, type,
|
|
|
|
pixels ? pixels->data : 0,
|
|
|
|
pixels ? pixels->byteLength : 0);
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexImage2D_array(WebGLenum target, WebGLint level, WebGLenum internalformat,
|
|
|
|
WebGLsizei width, WebGLsizei height, WebGLint border,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
js::TypedArray *pixels)
|
|
|
|
{
|
|
|
|
return TexImage2D_base(target, level, internalformat, width, height, border, format, type,
|
|
|
|
pixels ? pixels->data : 0,
|
|
|
|
pixels ? pixels->byteLength : 0);
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
2010-06-15 08:54:03 -07:00
|
|
|
WebGLContext::TexImage2D_dom(WebGLenum target, WebGLint level, WebGLenum internalformat,
|
|
|
|
WebGLenum format, GLenum type, nsIDOMElement *elt)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
|
|
|
nsRefPtr<gfxImageSurface> isurf;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-15 08:54:03 -07:00
|
|
|
nsresult rv = DOMElementToImageSurface(elt, getter_AddRefs(isurf),
|
2010-06-15 08:59:39 -07:00
|
|
|
mPixelStoreFlipY, mPixelStorePremultiplyAlpha);
|
2010-06-15 08:54:03 -07:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NS_ASSERTION(isurf->Stride() == isurf->Width() * 4, "Bad stride!");
|
|
|
|
|
|
|
|
PRUint32 byteLength = isurf->Stride() * isurf->Height();
|
|
|
|
|
|
|
|
return TexImage2D_base(target, level, internalformat,
|
|
|
|
isurf->Width(), isurf->Height(), 0,
|
|
|
|
format, type,
|
|
|
|
isurf->Data(), byteLength);
|
|
|
|
}
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::TexSubImage2D(PRInt32 dummy)
|
|
|
|
{
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
nsresult
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexSubImage2D_base(WebGLenum target, WebGLint level,
|
|
|
|
WebGLint xoffset, WebGLint yoffset,
|
|
|
|
WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
void *pixels, PRUint32 byteLength)
|
|
|
|
{
|
|
|
|
switch (target) {
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_TEXTURE_2D:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_X:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Y:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_Z:
|
|
|
|
case LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z:
|
|
|
|
break;
|
|
|
|
default:
|
2010-07-16 07:31:48 -07:00
|
|
|
return ErrorInvalidEnumInfo("texSubImage2D: target", target);
|
2010-01-22 13:34:25 -08:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
WebGLsizei maxTextureSize = target == LOCAL_GL_TEXTURE_2D ? mGLMaxTextureSize : mGLMaxCubeMapTextureSize;
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (level < 0)
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texSubImage2D: level must be >= 0");
|
|
|
|
|
|
|
|
if ((1 << level) > maxTextureSize)
|
|
|
|
return ErrorInvalidValue("texSubImage2D: 2^level exceeds maximum texture size");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (width < 0 || height < 0)
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texSubImage2D: width and height must be >= 0");
|
|
|
|
|
|
|
|
if (width > maxTextureSize || height > maxTextureSize)
|
|
|
|
return ErrorInvalidValue("texSubImage2D: width or height exceeds maximum texture size");
|
|
|
|
|
|
|
|
if (level >= 1) {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (!(is_pot_assuming_nonnegative(width) &&
|
|
|
|
is_pot_assuming_nonnegative(height)))
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texSubImage2D: with level > 0, width and height must be powers of two");
|
|
|
|
}
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2010-06-30 08:49:59 -07:00
|
|
|
PRUint32 texelSize = 0;
|
|
|
|
if (!ValidateTexFormatAndType(format, type, &texelSize, "texSubImage2D"))
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-05-15 06:55:45 -07:00
|
|
|
if (width == 0 || height == 0)
|
|
|
|
return NS_OK; // ES 2.0 says it has no effect, we better return right now
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 checked_bytesNeeded = CheckedUint32(width) * height * texelSize;
|
|
|
|
|
|
|
|
if (!checked_bytesNeeded.valid())
|
|
|
|
return ErrorInvalidOperation("texSubImage2D: integer overflow computing the needed buffer size");
|
|
|
|
|
|
|
|
PRUint32 bytesNeeded = checked_bytesNeeded.value();
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
if (byteLength < bytesNeeded)
|
2010-08-23 14:03:35 -07:00
|
|
|
return ErrorInvalidValue("texSubImage2D: not enough data for operation (need %d, have %d)", bytesNeeded, byteLength);
|
|
|
|
|
|
|
|
WebGLTexture *tex = activeBoundTextureForTarget(target);
|
|
|
|
|
|
|
|
if (!tex)
|
|
|
|
return ErrorInvalidOperation("texSubImage2D: no texture is bound to this target");
|
|
|
|
|
|
|
|
if (!CanvasUtils::CheckSaneSubrectSize(xoffset, yoffset, width, height, tex->width(), tex->height()))
|
|
|
|
return ErrorInvalidValue("texSubImage2D: subtexture rectangle out of bounds");
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
MakeContextCurrent();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
gl->fTexSubImage2D(target, level, xoffset, yoffset, width, height, format, type, pixels);
|
2009-11-18 12:42:35 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexSubImage2D_buf(WebGLenum target, WebGLint level,
|
|
|
|
WebGLint xoffset, WebGLint yoffset,
|
|
|
|
WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
js::ArrayBuffer *pixels)
|
|
|
|
{
|
|
|
|
if (!pixels)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("TexSubImage2D: pixels must not be null!");
|
2009-12-02 13:38:39 -08:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
return TexSubImage2D_base(target, level, xoffset, yoffset,
|
|
|
|
width, height, format, type,
|
|
|
|
pixels->data, pixels->byteLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexSubImage2D_array(WebGLenum target, WebGLint level,
|
|
|
|
WebGLint xoffset, WebGLint yoffset,
|
|
|
|
WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type,
|
2010-01-22 13:34:25 -08:00
|
|
|
js::TypedArray *pixels)
|
|
|
|
{
|
|
|
|
if (!pixels)
|
2010-05-15 06:55:45 -07:00
|
|
|
return ErrorInvalidValue("TexSubImage2D: pixels must not be null!");
|
2010-01-22 13:34:25 -08:00
|
|
|
|
|
|
|
return TexSubImage2D_base(target, level, xoffset, yoffset,
|
|
|
|
width, height, format, type,
|
|
|
|
pixels->data, pixels->byteLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLContext::TexSubImage2D_dom(WebGLenum target, WebGLint level,
|
|
|
|
WebGLint xoffset, WebGLint yoffset,
|
2010-06-15 08:54:03 -07:00
|
|
|
WebGLenum format, WebGLenum type,
|
|
|
|
nsIDOMElement *elt)
|
2010-01-22 13:34:25 -08:00
|
|
|
{
|
|
|
|
nsRefPtr<gfxImageSurface> isurf;
|
|
|
|
|
|
|
|
nsresult rv = DOMElementToImageSurface(elt, getter_AddRefs(isurf),
|
2010-06-15 08:59:39 -07:00
|
|
|
mPixelStoreFlipY, mPixelStorePremultiplyAlpha);
|
2010-01-22 13:34:25 -08:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2010-06-15 08:54:03 -07:00
|
|
|
PRUint32 byteLength = isurf->Stride() * isurf->Height();
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
return TexSubImage2D_base(target, level,
|
|
|
|
xoffset, yoffset,
|
2010-06-15 08:54:03 -07:00
|
|
|
isurf->Width(), isurf->Height(),
|
2010-01-22 13:34:25 -08:00
|
|
|
LOCAL_GL_RGBA, LOCAL_GL_UNSIGNED_BYTE,
|
2010-06-15 08:54:03 -07:00
|
|
|
isurf->Data(), byteLength);
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
// ImageData getImageData (in float x, in float y, in float width, in float height);
|
|
|
|
NS_IMETHODIMP
|
|
|
|
WebGLContext::GetImageData(PRUint32 x, PRUint32 y, PRUint32 w, PRUint32 h)
|
|
|
|
{
|
|
|
|
// disabled due to win32 linkage issues with thebes symbols and NS_RELEASE
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
NativeJSContext js;
|
|
|
|
if (NS_FAILED(js.error))
|
|
|
|
return js.error;
|
|
|
|
|
|
|
|
if (js.argc != 4) return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
if (!mGLPbuffer ||
|
|
|
|
!mGLPbuffer->ThebesSurface())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (!mCanvasElement)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-15 14:38:05 -07:00
|
|
|
if (HTMLCanvasElement()->IsWriteOnly() && !IsCallerTrustedForRead()) {
|
2009-09-02 17:47:49 -07:00
|
|
|
// XXX ERRMSG we need to report an error to developers here! (bug 329026)
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSContext *ctx = js.ctx;
|
|
|
|
|
|
|
|
if (!CanvasUtils::CheckSaneSubrectSize (x, y, w, h, mWidth, mHeight))
|
|
|
|
return NS_ERROR_DOM_SYNTAX_ERR;
|
|
|
|
|
|
|
|
nsAutoArrayPtr<PRUint8> surfaceData (new (std::nothrow) PRUint8[w * h * 4]);
|
|
|
|
int surfaceDataStride = w*4;
|
|
|
|
int surfaceDataOffset = 0;
|
|
|
|
|
|
|
|
if (!surfaceData)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsRefPtr<gfxImageSurface> tmpsurf = new gfxImageSurface(surfaceData,
|
|
|
|
gfxIntSize(w, h),
|
|
|
|
w * 4,
|
|
|
|
gfxASurface::ImageFormatARGB32);
|
|
|
|
if (!tmpsurf || tmpsurf->CairoStatus())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRefPtr<gfxContext> tmpctx = new gfxContext(tmpsurf);
|
|
|
|
|
|
|
|
if (!tmpctx || tmpctx->HasError())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRefPtr<gfxASurface> surf = mGLPbuffer->ThebesSurface();
|
|
|
|
nsRefPtr<gfxPattern> pat = CanvasGLThebes::CreatePattern(surf);
|
|
|
|
gfxMatrix m;
|
|
|
|
m.Translate(gfxPoint(x, mGLPbuffer->Height()-y));
|
|
|
|
m.Scale(1.0, -1.0);
|
|
|
|
pat->SetMatrix(m);
|
|
|
|
|
|
|
|
// XXX I don't want to use PixelSnapped here, but layout doesn't guarantee
|
|
|
|
// pixel alignment for this stuff!
|
|
|
|
tmpctx->NewPath();
|
|
|
|
tmpctx->PixelSnappedRectangleAndSetPattern(gfxRect(0, 0, w, h), pat);
|
|
|
|
tmpctx->SetOperator(gfxContext::OPERATOR_SOURCE);
|
|
|
|
tmpctx->Fill();
|
|
|
|
|
|
|
|
tmpctx = nsnull;
|
|
|
|
tmpsurf = nsnull;
|
|
|
|
|
|
|
|
PRUint32 len = w * h * 4;
|
|
|
|
if (len > (((PRUint32)0xfff00000)/sizeof(jsval)))
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
nsAutoArrayPtr<jsval> jsvector(new (std::nothrow) jsval[w * h * 4]);
|
|
|
|
if (!jsvector)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
jsval *dest = jsvector.get();
|
|
|
|
PRUint8 *row;
|
|
|
|
for (PRUint32 j = 0; j < h; j++) {
|
|
|
|
row = surfaceData + surfaceDataOffset + (surfaceDataStride * j);
|
|
|
|
for (PRUint32 i = 0; i < w; i++) {
|
|
|
|
// XXX Is there some useful swizzle MMX we can use here?
|
|
|
|
// I guess we have to INT_TO_JSVAL still
|
|
|
|
#ifdef IS_LITTLE_ENDIAN
|
|
|
|
PRUint8 b = *row++;
|
|
|
|
PRUint8 g = *row++;
|
|
|
|
PRUint8 r = *row++;
|
|
|
|
PRUint8 a = *row++;
|
|
|
|
#else
|
|
|
|
PRUint8 a = *row++;
|
|
|
|
PRUint8 r = *row++;
|
|
|
|
PRUint8 g = *row++;
|
|
|
|
PRUint8 b = *row++;
|
|
|
|
#endif
|
|
|
|
// Convert to non-premultiplied color
|
|
|
|
if (a != 0) {
|
|
|
|
r = (r * 255) / a;
|
|
|
|
g = (g * 255) / a;
|
|
|
|
b = (b * 255) / a;
|
|
|
|
}
|
|
|
|
|
|
|
|
*dest++ = INT_TO_JSVAL(r);
|
|
|
|
*dest++ = INT_TO_JSVAL(g);
|
|
|
|
*dest++ = INT_TO_JSVAL(b);
|
|
|
|
*dest++ = INT_TO_JSVAL(a);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JSObject *dataArray = JS_NewArrayObject(ctx, w*h*4, jsvector);
|
|
|
|
if (!dataArray)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
JSObjectHelper retobj(&js);
|
|
|
|
retobj.DefineProperty("width", w);
|
|
|
|
retobj.DefineProperty("height", h);
|
|
|
|
retobj.DefineProperty("data", dataArray);
|
|
|
|
|
|
|
|
js.SetRetVal(retobj);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
PRBool
|
2010-05-28 15:52:39 -07:00
|
|
|
BaseTypeAndSizeFromUniformType(WebGLenum uType, WebGLenum *baseType, WebGLint *unitSize)
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2010-06-19 07:43:40 -07:00
|
|
|
switch (uType) {
|
2009-09-02 17:47:49 -07:00
|
|
|
case LOCAL_GL_INT:
|
|
|
|
case LOCAL_GL_INT_VEC2:
|
|
|
|
case LOCAL_GL_INT_VEC3:
|
|
|
|
case LOCAL_GL_INT_VEC4:
|
|
|
|
case LOCAL_GL_SAMPLER_2D:
|
|
|
|
case LOCAL_GL_SAMPLER_CUBE:
|
|
|
|
*baseType = LOCAL_GL_INT;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_FLOAT:
|
|
|
|
case LOCAL_GL_FLOAT_VEC2:
|
|
|
|
case LOCAL_GL_FLOAT_VEC3:
|
|
|
|
case LOCAL_GL_FLOAT_VEC4:
|
|
|
|
case LOCAL_GL_FLOAT_MAT2:
|
|
|
|
case LOCAL_GL_FLOAT_MAT3:
|
|
|
|
case LOCAL_GL_FLOAT_MAT4:
|
|
|
|
*baseType = LOCAL_GL_FLOAT;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_BOOL:
|
|
|
|
case LOCAL_GL_BOOL_VEC2:
|
|
|
|
case LOCAL_GL_BOOL_VEC3:
|
|
|
|
case LOCAL_GL_BOOL_VEC4:
|
2010-06-19 07:43:40 -07:00
|
|
|
*baseType = LOCAL_GL_BOOL; // pretend these are int
|
2009-09-02 17:47:49 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (uType) {
|
|
|
|
case LOCAL_GL_INT:
|
|
|
|
case LOCAL_GL_FLOAT:
|
|
|
|
case LOCAL_GL_BOOL:
|
|
|
|
case LOCAL_GL_SAMPLER_2D:
|
|
|
|
case LOCAL_GL_SAMPLER_CUBE:
|
|
|
|
*unitSize = 1;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_INT_VEC2:
|
|
|
|
case LOCAL_GL_FLOAT_VEC2:
|
|
|
|
case LOCAL_GL_BOOL_VEC2:
|
|
|
|
*unitSize = 2;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_INT_VEC3:
|
|
|
|
case LOCAL_GL_FLOAT_VEC3:
|
|
|
|
case LOCAL_GL_BOOL_VEC3:
|
|
|
|
*unitSize = 3;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_INT_VEC4:
|
|
|
|
case LOCAL_GL_FLOAT_VEC4:
|
|
|
|
case LOCAL_GL_BOOL_VEC4:
|
|
|
|
*unitSize = 4;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_FLOAT_MAT2:
|
|
|
|
*unitSize = 4;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_FLOAT_MAT3:
|
|
|
|
*unitSize = 9;
|
|
|
|
break;
|
|
|
|
case LOCAL_GL_FLOAT_MAT4:
|
|
|
|
*unitSize = 16;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|