2009-09-02 17:47:49 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** 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) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Vladimir Vukicevic <vladimir@pobox.com> (original author)
|
2009-09-17 23:01:12 -07:00
|
|
|
* Mark Steele <mwsteele@gmail.com>
|
2009-09-02 17:47:49 -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 ***** */
|
|
|
|
|
|
|
|
#ifndef WEBGLCONTEXT_H_
|
|
|
|
#define WEBGLCONTEXT_H_
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2010-06-10 10:45:00 -07:00
|
|
|
#include <vector>
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
|
|
|
|
#include "nsIDocShell.h"
|
|
|
|
|
2010-11-16 20:33:04 -08:00
|
|
|
#include "nsIDOMWebGLRenderingContext.h"
|
2009-09-02 17:47:49 -07:00
|
|
|
#include "nsICanvasRenderingContextInternal.h"
|
2010-05-17 21:04:22 -07:00
|
|
|
#include "nsHTMLCanvasElement.h"
|
2009-09-02 17:47:49 -07:00
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsIDOMHTMLElement.h"
|
2009-09-17 23:01:07 -07:00
|
|
|
#include "nsIJSNativeInitializer.h"
|
2011-07-07 17:01:12 -07:00
|
|
|
#include "nsIMemoryReporter.h"
|
2011-12-02 23:52:35 -08:00
|
|
|
#include "nsContentUtils.h"
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-07-18 22:01:14 -07:00
|
|
|
#include "GLContextProvider.h"
|
2010-05-17 21:04:22 -07:00
|
|
|
#include "Layers.h"
|
2010-01-22 18:29:49 -08:00
|
|
|
|
2010-07-03 15:32:19 -07:00
|
|
|
#include "CheckedInt.h"
|
|
|
|
|
2011-10-13 05:09:22 -07:00
|
|
|
/*
|
|
|
|
* Minimum value constants defined in 6.2 State Tables of OpenGL ES - 2.0.25
|
|
|
|
* https://bugzilla.mozilla.org/show_bug.cgi?id=686732
|
|
|
|
*
|
|
|
|
* Exceptions: some of the following values are set to higher values than in the spec because
|
|
|
|
* the values in the spec are ridiculously low. They are explicitly marked below
|
|
|
|
*/
|
|
|
|
#define MINVALUE_GL_MAX_TEXTURE_SIZE 1024 // Different from the spec, which sets it to 64 on page 162
|
|
|
|
#define MINVALUE_GL_MAX_CUBE_MAP_TEXTURE_SIZE 512 // Different from the spec, which sets it to 16 on page 162
|
|
|
|
#define MINVALUE_GL_MAX_VERTEX_ATTRIBS 8 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_FRAGMENT_UNIFORM_VECTORS 16 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_VERTEX_UNIFORM_VECTORS 128 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_VARYING_VECTORS 8 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_TEXTURE_IMAGE_UNITS 8 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS 0 // Page 164
|
|
|
|
#define MINVALUE_GL_MAX_RENDERBUFFER_SIZE 1024 // Different from the spec, which sets it to 1 on page 164
|
|
|
|
#define MINVALUE_GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS 8 // Page 164
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
class nsIDocShell;
|
2010-11-16 20:33:03 -08:00
|
|
|
class nsIPropertyBag;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class WebGLTexture;
|
|
|
|
class WebGLBuffer;
|
|
|
|
class WebGLProgram;
|
|
|
|
class WebGLShader;
|
|
|
|
class WebGLFramebuffer;
|
|
|
|
class WebGLRenderbuffer;
|
2010-06-01 23:09:19 -07:00
|
|
|
class WebGLUniformLocation;
|
2011-09-30 21:45:50 -07:00
|
|
|
class WebGLExtension;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-10-03 05:41:56 -07:00
|
|
|
template<int PreallocatedOwnersCapacity> class WebGLZeroingObject;
|
2010-06-10 10:45:00 -07:00
|
|
|
class WebGLContextBoundObject;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
enum FakeBlackStatus { DoNotNeedFakeBlack, DoNeedFakeBlack, DontKnowIfNeedFakeBlack };
|
|
|
|
|
2011-02-24 14:17:34 -08:00
|
|
|
struct VertexAttrib0Status {
|
|
|
|
enum { Default, EmulatedUninitializedArray, EmulatedInitializedArray };
|
|
|
|
};
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
struct BackbufferClearingStatus {
|
|
|
|
enum { NotClearedSinceLastPresented, ClearedToDefaultValues, HasBeenDrawnTo };
|
|
|
|
};
|
|
|
|
|
2010-10-15 14:50:15 -07:00
|
|
|
struct WebGLTexelFormat {
|
2011-05-20 12:53:53 -07:00
|
|
|
enum { Generic, Auto, RGBA8, RGB8, RGBX8, BGRA8, BGR8, BGRX8, RGBA5551, RGBA4444, RGB565, R8, RA8, A8,
|
|
|
|
RGBA32F, RGB32F, A32F, R32F, RA32F };
|
2010-10-15 14:50:15 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct WebGLTexelPremultiplicationOp {
|
|
|
|
enum { Generic, None, Premultiply, Unmultiply };
|
|
|
|
};
|
|
|
|
|
|
|
|
int GetWebGLTexelFormat(GLenum format, GLenum type);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
inline bool is_pot_assuming_nonnegative(WebGLsizei x)
|
2010-08-23 14:03:53 -07:00
|
|
|
{
|
|
|
|
return (x & (x-1)) == 0;
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
class WebGLObjectBaseRefPtr
|
|
|
|
{
|
|
|
|
protected:
|
2011-10-03 05:41:56 -07:00
|
|
|
template<int PreallocatedOwnersCapacity>
|
2009-09-02 17:47:49 -07:00
|
|
|
friend class WebGLZeroingObject;
|
|
|
|
|
|
|
|
WebGLObjectBaseRefPtr()
|
|
|
|
: mRawPtr(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectBaseRefPtr(nsISupports *rawPtr)
|
|
|
|
: mRawPtr(rawPtr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void Zero() {
|
|
|
|
if (mRawPtr) {
|
|
|
|
// Note: RemoveRefOwner isn't called here, because
|
|
|
|
// the entire owner array will be cleared.
|
|
|
|
mRawPtr->Release();
|
|
|
|
mRawPtr = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsISupports *mRawPtr;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
class WebGLObjectRefPtr
|
|
|
|
: public WebGLObjectBaseRefPtr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef T element_type;
|
|
|
|
|
|
|
|
WebGLObjectRefPtr()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
WebGLObjectRefPtr(const WebGLObjectRefPtr<T>& aSmartPtr)
|
|
|
|
: WebGLObjectBaseRefPtr(aSmartPtr.mRawPtr)
|
|
|
|
{
|
|
|
|
if (mRawPtr) {
|
|
|
|
RawPtr()->AddRef();
|
|
|
|
RawPtr()->AddRefOwner(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectRefPtr(T *aRawPtr)
|
|
|
|
: WebGLObjectBaseRefPtr(aRawPtr)
|
|
|
|
{
|
|
|
|
if (mRawPtr) {
|
|
|
|
RawPtr()->AddRef();
|
|
|
|
RawPtr()->AddRefOwner(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectRefPtr(const already_AddRefed<T>& aSmartPtr)
|
|
|
|
: WebGLObjectBaseRefPtr(aSmartPtr.mRawPtr)
|
|
|
|
// construct from |dont_AddRef(expr)|
|
|
|
|
{
|
|
|
|
if (mRawPtr) {
|
|
|
|
RawPtr()->AddRef();
|
|
|
|
RawPtr()->AddRefOwner(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
~WebGLObjectRefPtr() {
|
|
|
|
if (mRawPtr) {
|
|
|
|
RawPtr()->RemoveRefOwner(this);
|
|
|
|
RawPtr()->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectRefPtr<T>&
|
|
|
|
operator=(const WebGLObjectRefPtr<T>& rhs)
|
|
|
|
{
|
|
|
|
assign_with_AddRef(static_cast<T*>(rhs.mRawPtr));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectRefPtr<T>&
|
|
|
|
operator=(T* rhs)
|
|
|
|
{
|
|
|
|
assign_with_AddRef(rhs);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLObjectRefPtr<T>&
|
|
|
|
operator=(const already_AddRefed<T>& rhs)
|
|
|
|
{
|
|
|
|
assign_assuming_AddRef(static_cast<T*>(rhs.mRawPtr));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
T* get() const {
|
|
|
|
return const_cast<T*>(static_cast<T*>(mRawPtr));
|
|
|
|
}
|
|
|
|
|
|
|
|
operator T*() const {
|
|
|
|
return get();
|
|
|
|
}
|
|
|
|
|
|
|
|
T* operator->() const {
|
|
|
|
NS_PRECONDITION(mRawPtr != 0, "You can't dereference a NULL WebGLObjectRefPtr with operator->()!");
|
|
|
|
return get();
|
|
|
|
}
|
|
|
|
|
|
|
|
T& operator*() const {
|
|
|
|
NS_PRECONDITION(mRawPtr != 0, "You can't dereference a NULL WebGLObjectRefPtr with operator*()!");
|
|
|
|
return *get();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
T* RawPtr() { return static_cast<T*>(mRawPtr); }
|
|
|
|
|
|
|
|
void assign_with_AddRef(T* rawPtr) {
|
|
|
|
if (rawPtr) {
|
|
|
|
rawPtr->AddRef();
|
|
|
|
rawPtr->AddRefOwner(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
assign_assuming_AddRef(rawPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void assign_assuming_AddRef(T* newPtr) {
|
|
|
|
T* oldPtr = RawPtr();
|
|
|
|
mRawPtr = newPtr;
|
|
|
|
if (oldPtr) {
|
|
|
|
oldPtr->RemoveRefOwner(this);
|
|
|
|
oldPtr->Release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class WebGLBuffer;
|
|
|
|
|
|
|
|
struct WebGLVertexAttribData {
|
2010-11-16 20:33:03 -08:00
|
|
|
// note that these initial values are what GL initializes vertex attribs to
|
2009-09-02 17:47:49 -07:00
|
|
|
WebGLVertexAttribData()
|
2010-11-16 20:33:03 -08:00
|
|
|
: buf(0), stride(0), size(4), byteOffset(0),
|
2011-10-17 07:59:28 -07:00
|
|
|
type(LOCAL_GL_FLOAT), enabled(false), normalized(false)
|
2009-09-02 17:47:49 -07:00
|
|
|
{ }
|
|
|
|
|
|
|
|
WebGLObjectRefPtr<WebGLBuffer> buf;
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint stride;
|
|
|
|
WebGLuint size;
|
2010-06-01 23:09:18 -07:00
|
|
|
GLuint byteOffset;
|
|
|
|
GLenum type;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool enabled;
|
|
|
|
bool normalized;
|
2010-06-01 23:09:18 -07:00
|
|
|
|
2010-06-08 15:14:43 -07:00
|
|
|
GLuint componentSize() const {
|
2010-06-01 23:09:18 -07:00
|
|
|
switch(type) {
|
|
|
|
case LOCAL_GL_BYTE:
|
2010-06-08 15:14:43 -07:00
|
|
|
return sizeof(GLbyte);
|
2010-06-01 23:09:18 -07:00
|
|
|
break;
|
|
|
|
case LOCAL_GL_UNSIGNED_BYTE:
|
2010-06-08 15:14:43 -07:00
|
|
|
return sizeof(GLubyte);
|
2010-06-01 23:09:18 -07:00
|
|
|
break;
|
|
|
|
case LOCAL_GL_SHORT:
|
2010-06-08 15:14:43 -07:00
|
|
|
return sizeof(GLshort);
|
2010-06-01 23:09:18 -07:00
|
|
|
break;
|
|
|
|
case LOCAL_GL_UNSIGNED_SHORT:
|
2010-06-08 15:14:43 -07:00
|
|
|
return sizeof(GLushort);
|
2010-06-01 23:09:18 -07:00
|
|
|
break;
|
|
|
|
// XXX case LOCAL_GL_FIXED:
|
|
|
|
case LOCAL_GL_FLOAT:
|
2010-06-08 15:14:43 -07:00
|
|
|
return sizeof(GLfloat);
|
2010-06-01 23:09:18 -07:00
|
|
|
break;
|
2010-06-08 15:14:43 -07:00
|
|
|
default:
|
|
|
|
NS_ERROR("Should never get here!");
|
|
|
|
return 0;
|
2010-06-01 23:09:18 -07:00
|
|
|
}
|
2010-06-08 15:14:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
GLuint actualStride() const {
|
|
|
|
if (stride) return stride;
|
|
|
|
return size * componentSize();
|
2010-06-01 23:09:18 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-11-16 20:33:03 -08:00
|
|
|
struct WebGLContextOptions {
|
|
|
|
// these are defaults
|
|
|
|
WebGLContextOptions()
|
|
|
|
: alpha(true), depth(true), stencil(false),
|
2011-10-19 12:09:57 -07:00
|
|
|
premultipliedAlpha(true), antialias(true),
|
2011-05-20 12:53:53 -07:00
|
|
|
preserveDrawingBuffer(false)
|
2010-11-16 20:33:03 -08:00
|
|
|
{ }
|
|
|
|
|
|
|
|
bool operator==(const WebGLContextOptions& other) const {
|
|
|
|
return
|
|
|
|
alpha == other.alpha &&
|
|
|
|
depth == other.depth &&
|
|
|
|
stencil == other.stencil &&
|
|
|
|
premultipliedAlpha == other.premultipliedAlpha &&
|
2011-05-20 12:53:53 -07:00
|
|
|
antialias == other.antialias &&
|
|
|
|
preserveDrawingBuffer == other.preserveDrawingBuffer;
|
2010-11-16 20:33:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const WebGLContextOptions& other) const {
|
2011-05-20 12:53:53 -07:00
|
|
|
return !operator==(other);
|
2010-11-16 20:33:03 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool alpha;
|
|
|
|
bool depth;
|
|
|
|
bool stencil;
|
|
|
|
bool premultipliedAlpha;
|
2011-05-20 12:53:53 -07:00
|
|
|
bool antialias;
|
|
|
|
bool preserveDrawingBuffer;
|
2010-11-16 20:33:03 -08:00
|
|
|
};
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
class WebGLContext :
|
2010-11-16 20:33:04 -08:00
|
|
|
public nsIDOMWebGLRenderingContext,
|
2009-09-02 17:47:49 -07:00
|
|
|
public nsICanvasRenderingContextInternal,
|
2011-10-26 13:00:44 -07:00
|
|
|
public nsSupportsWeakReference,
|
|
|
|
public nsITimerCallback
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
2011-07-07 17:01:12 -07:00
|
|
|
friend class WebGLMemoryReporter;
|
2011-10-26 13:00:44 -07:00
|
|
|
friend class WebGLExtensionLoseContext;
|
2011-10-31 14:14:12 -07:00
|
|
|
friend class WebGLContextUserData;
|
2011-07-07 17:01:12 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
public:
|
|
|
|
WebGLContext();
|
|
|
|
virtual ~WebGLContext();
|
|
|
|
|
2010-06-15 14:38:05 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
2010-11-16 20:33:04 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(WebGLContext, nsIDOMWebGLRenderingContext)
|
2010-06-15 14:38:05 -07:00
|
|
|
|
2010-11-16 20:33:04 -08:00
|
|
|
NS_DECL_NSIDOMWEBGLRENDERINGCONTEXT
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
NS_DECL_NSITIMERCALLBACK
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
// nsICanvasRenderingContextInternal
|
2010-05-17 21:04:22 -07:00
|
|
|
NS_IMETHOD SetCanvasElement(nsHTMLCanvasElement* aParentCanvas);
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHOD SetDimensions(PRInt32 width, PRInt32 height);
|
|
|
|
NS_IMETHOD InitializeWithSurface(nsIDocShell *docShell, gfxASurface *surface, PRInt32 width, PRInt32 height)
|
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-08-19 08:22:46 -07:00
|
|
|
NS_IMETHOD Reset()
|
|
|
|
{ /* (InitializeWithSurface) */ return NS_ERROR_NOT_IMPLEMENTED; }
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_IMETHOD Render(gfxContext *ctx, gfxPattern::GraphicsFilter f);
|
|
|
|
NS_IMETHOD GetInputStream(const char* aMimeType,
|
|
|
|
const PRUnichar* aEncoderOptions,
|
|
|
|
nsIInputStream **aStream);
|
|
|
|
NS_IMETHOD GetThebesSurface(gfxASurface **surface);
|
2011-06-24 10:41:18 -07:00
|
|
|
mozilla::TemporaryRef<mozilla::gfx::SourceSurface> GetSurfaceSnapshot()
|
|
|
|
{ return nsnull; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD SetIsOpaque(bool b) { return NS_OK; };
|
2010-11-16 20:33:03 -08:00
|
|
|
NS_IMETHOD SetContextOptions(nsIPropertyBag *aOptions);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHOD SetIsIPC(bool b) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2009-10-29 10:58:31 -07:00
|
|
|
NS_IMETHOD Redraw(const gfxRect&) { return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-03-24 03:47:18 -07:00
|
|
|
NS_IMETHOD Swap(mozilla::ipc::Shmem& aBack,
|
|
|
|
PRInt32 x, PRInt32 y, PRInt32 w, PRInt32 h)
|
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
2010-06-04 06:58:22 -07:00
|
|
|
NS_IMETHOD Swap(PRUint32 nativeID,
|
|
|
|
PRInt32 x, PRInt32 y, PRInt32 w, PRInt32 h)
|
|
|
|
{ return NS_ERROR_NOT_IMPLEMENTED; }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
bool LoseContext();
|
|
|
|
bool RestoreContext();
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
nsresult SynthesizeGLError(WebGLenum err);
|
|
|
|
nsresult SynthesizeGLError(WebGLenum err, const char *fmt, ...);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
nsresult ErrorInvalidEnum(const char *fmt = 0, ...);
|
|
|
|
nsresult ErrorInvalidOperation(const char *fmt = 0, ...);
|
|
|
|
nsresult ErrorInvalidValue(const char *fmt = 0, ...);
|
2010-07-16 07:31:48 -07:00
|
|
|
nsresult ErrorInvalidEnumInfo(const char *info, PRUint32 enumvalue) {
|
|
|
|
return ErrorInvalidEnum("%s: invalid enum value 0x%x", info, enumvalue);
|
2010-06-30 08:49:59 -07:00
|
|
|
}
|
2011-02-24 14:17:34 -08:00
|
|
|
nsresult ErrorOutOfMemory(const char *fmt = 0, ...);
|
2011-07-07 17:01:16 -07:00
|
|
|
|
|
|
|
const char *ErrorName(GLenum error);
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2010-08-23 14:03:35 -07:00
|
|
|
WebGLTexture *activeBoundTextureForTarget(WebGLenum target) {
|
|
|
|
return target == LOCAL_GL_TEXTURE_2D ? mBound2DTextures[mActiveTexture]
|
|
|
|
: mBoundCubeMapTextures[mActiveTexture];
|
|
|
|
}
|
|
|
|
|
2011-03-27 16:59:47 -07:00
|
|
|
already_AddRefed<CanvasLayer> GetCanvasLayer(nsDisplayListBuilder* aBuilder,
|
|
|
|
CanvasLayer *aOldLayer,
|
2010-07-15 14:07:46 -07:00
|
|
|
LayerManager *aManager);
|
2011-10-17 07:59:28 -07:00
|
|
|
void MarkContextClean() { mInvalidated = false; }
|
2010-05-17 21:04:22 -07:00
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
// a number that increments every time we have an event that causes
|
|
|
|
// all context resources to be lost.
|
2010-07-03 15:32:19 -07:00
|
|
|
PRUint32 Generation() { return mGeneration.value(); }
|
2010-08-23 14:03:53 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
// this is similar to GLContext::ClearSafely, but is more comprehensive
|
|
|
|
// (takes care of scissor, stencil write mask, dithering, viewport...)
|
|
|
|
// WebGL has more complex needs than GLContext as content controls GL state.
|
|
|
|
void ForceClearFramebufferWithDefaultValues(PRUint32 mask, const nsIntRect& viewportRect);
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
// if the preserveDrawingBuffer context option is false, we need to clear the back buffer
|
|
|
|
// after it's been presented to the compositor. This function does that if needed.
|
|
|
|
// See section 2.2 in the WebGL spec.
|
|
|
|
void EnsureBackbufferClearedAsNeeded();
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
// checks for GL errors, clears any pending GL error, stores the current GL error in currentGLError,
|
|
|
|
// and copies it into mWebGLError if it doesn't already have an error set
|
|
|
|
void UpdateWebGLErrorAndClearGLError(GLenum *currentGLError) {
|
|
|
|
// get and clear GL error in ALL cases
|
|
|
|
*currentGLError = gl->GetAndClearError();
|
|
|
|
// only store in mWebGLError if is hasn't already recorded an error
|
|
|
|
if (!mWebGLError)
|
|
|
|
mWebGLError = *currentGLError;
|
|
|
|
}
|
|
|
|
|
|
|
|
// checks for GL errors, clears any pending GL error,
|
|
|
|
// and stores the current GL error into mWebGLError if it doesn't already have an error set
|
|
|
|
void UpdateWebGLErrorAndClearGLError() {
|
|
|
|
GLenum currentGLError;
|
|
|
|
UpdateWebGLErrorAndClearGLError(¤tGLError);
|
|
|
|
}
|
2011-10-13 05:09:22 -07:00
|
|
|
|
|
|
|
bool MinCapabilityMode() const {
|
|
|
|
return mMinCapability;
|
|
|
|
}
|
2011-07-07 17:01:16 -07:00
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
// Sets up the GL_ARB_robustness timer if it isn't already, so that if the
|
|
|
|
// driver gets restarted, the context may get reset with it.
|
|
|
|
void SetupRobustnessTimer() {
|
2011-12-02 23:52:35 -08:00
|
|
|
if (mContextLost || (!mHasRobustness && gl->GetContextType() != gl::GLContext::ContextTypeEGL))
|
2011-10-26 13:00:44 -07:00
|
|
|
return;
|
|
|
|
|
2011-11-18 19:57:29 -08:00
|
|
|
// If the timer was already running, don't restart it here. Instead,
|
|
|
|
// wait until the previous call is done, then fire it one more time.
|
|
|
|
// This is an optimization to prevent unnecessary cross-communication
|
|
|
|
// between threads.
|
|
|
|
if (mRobustnessTimerRunning) {
|
|
|
|
mDrawSinceRobustnessTimerSet = true;
|
|
|
|
return;
|
|
|
|
}
|
2011-10-26 13:00:44 -07:00
|
|
|
|
|
|
|
mContextRestorer->InitWithCallback(static_cast<nsITimerCallback*>(this),
|
|
|
|
PR_MillisecondsToInterval(1000),
|
|
|
|
nsITimer::TYPE_ONE_SHOT);
|
2011-11-18 19:57:29 -08:00
|
|
|
mRobustnessTimerRunning = true;
|
|
|
|
mDrawSinceRobustnessTimerSet = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TerminateRobustnessTimer() {
|
|
|
|
if (mRobustnessTimerRunning) {
|
|
|
|
mContextRestorer->Cancel();
|
|
|
|
mRobustnessTimerRunning = false;
|
|
|
|
}
|
2011-10-26 13:00:44 -07:00
|
|
|
}
|
|
|
|
|
2011-02-24 14:17:34 -08:00
|
|
|
protected:
|
2010-08-23 14:03:53 -07:00
|
|
|
void SetDontKnowIfNeedFakeBlack() {
|
|
|
|
mFakeBlackStatus = DontKnowIfNeedFakeBlack;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool NeedFakeBlack();
|
2010-08-23 14:03:53 -07:00
|
|
|
void BindFakeBlackTextures();
|
|
|
|
void UnbindFakeBlackTextures();
|
|
|
|
|
2011-02-24 14:17:34 -08:00
|
|
|
int WhatDoesVertexAttrib0Need();
|
2011-09-21 23:55:10 -07:00
|
|
|
bool DoFakeVertexAttrib0(WebGLuint vertexCount);
|
2010-09-02 07:34:08 -07:00
|
|
|
void UndoFakeVertexAttrib0();
|
2011-02-24 14:17:34 -08:00
|
|
|
void InvalidateFakeVertexAttrib0();
|
2010-09-02 07:34:08 -07:00
|
|
|
|
2011-09-01 12:28:34 -07:00
|
|
|
static CheckedUint32 GetImageSize(WebGLsizei height,
|
|
|
|
WebGLsizei width,
|
|
|
|
PRUint32 pixelSize,
|
|
|
|
PRUint32 alignment);
|
|
|
|
|
|
|
|
// Returns x rounded to the next highest multiple of y.
|
|
|
|
static CheckedUint32 RoundedToNextMultipleOf(CheckedUint32 x, CheckedUint32 y) {
|
|
|
|
return ((x + y - 1) / y) * y;
|
|
|
|
}
|
|
|
|
|
2010-06-15 14:38:05 -07:00
|
|
|
nsCOMPtr<nsIDOMHTMLCanvasElement> mCanvasElement;
|
|
|
|
nsHTMLCanvasElement *HTMLCanvasElement() {
|
|
|
|
return static_cast<nsHTMLCanvasElement*>(mCanvasElement.get());
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-17 21:04:22 -07:00
|
|
|
nsRefPtr<gl::GLContext> gl;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
PRInt32 mWidth, mHeight;
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 mGeneration;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-11-16 20:33:03 -08:00
|
|
|
WebGLContextOptions mOptions;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mInvalidated;
|
|
|
|
bool mResetLayer;
|
|
|
|
bool mVerbose;
|
|
|
|
bool mOptionsFrozen;
|
2011-10-13 05:09:22 -07:00
|
|
|
bool mMinCapability;
|
|
|
|
bool mDisableExtensions;
|
2011-11-18 19:57:29 -08:00
|
|
|
bool mHasRobustness;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mActiveTexture;
|
2011-07-07 17:01:16 -07:00
|
|
|
WebGLenum mWebGLError;
|
2010-05-15 06:55:45 -07:00
|
|
|
|
2010-07-14 20:52:34 -07:00
|
|
|
// whether shader validation is supported
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mShaderValidation;
|
2010-07-14 20:52:34 -07:00
|
|
|
|
|
|
|
// some GL constants
|
2010-08-23 14:03:35 -07:00
|
|
|
PRInt32 mGLMaxVertexAttribs;
|
|
|
|
PRInt32 mGLMaxTextureUnits;
|
|
|
|
PRInt32 mGLMaxTextureSize;
|
|
|
|
PRInt32 mGLMaxCubeMapTextureSize;
|
|
|
|
PRInt32 mGLMaxTextureImageUnits;
|
|
|
|
PRInt32 mGLMaxVertexTextureImageUnits;
|
|
|
|
PRInt32 mGLMaxVaryingVectors;
|
|
|
|
PRInt32 mGLMaxFragmentUniformVectors;
|
|
|
|
PRInt32 mGLMaxVertexUniformVectors;
|
2010-07-14 20:52:34 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
// extensions
|
|
|
|
enum WebGLExtensionID {
|
|
|
|
WebGL_OES_texture_float,
|
2011-09-30 21:45:50 -07:00
|
|
|
WebGL_OES_standard_derivatives,
|
2011-11-03 17:29:57 -07:00
|
|
|
WebGL_WEBGL_EXT_lose_context,
|
2011-05-20 12:53:53 -07:00
|
|
|
WebGLExtensionID_Max
|
|
|
|
};
|
2011-09-30 21:45:50 -07:00
|
|
|
nsCOMPtr<WebGLExtension> mEnabledExtensions[WebGLExtensionID_Max];
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsExtensionEnabled(WebGLExtensionID ext) const {
|
2011-05-20 12:53:53 -07:00
|
|
|
NS_ABORT_IF_FALSE(ext >= 0 && ext < WebGLExtensionID_Max, "bogus index!");
|
2011-05-20 12:53:53 -07:00
|
|
|
return mEnabledExtensions[ext] != nsnull;
|
|
|
|
}
|
2011-08-15 12:53:02 -07:00
|
|
|
bool IsExtensionSupported(WebGLExtensionID ei);
|
2011-05-20 12:53:53 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool InitAndValidateGL();
|
|
|
|
bool ValidateBuffers(PRInt32* maxAllowedCount, const char *info);
|
|
|
|
bool ValidateCapabilityEnum(WebGLenum cap, const char *info);
|
|
|
|
bool ValidateBlendEquationEnum(WebGLenum cap, const char *info);
|
|
|
|
bool ValidateBlendFuncDstEnum(WebGLenum mode, const char *info);
|
|
|
|
bool ValidateBlendFuncSrcEnum(WebGLenum mode, const char *info);
|
|
|
|
bool ValidateBlendFuncEnumsCompatibility(WebGLenum sfactor, WebGLenum dfactor, const char *info);
|
|
|
|
bool ValidateTextureTargetEnum(WebGLenum target, const char *info);
|
|
|
|
bool ValidateComparisonEnum(WebGLenum target, const char *info);
|
|
|
|
bool ValidateStencilOpEnum(WebGLenum action, const char *info);
|
|
|
|
bool ValidateFaceEnum(WebGLenum face, const char *info);
|
|
|
|
bool ValidateBufferUsageEnum(WebGLenum target, const char *info);
|
|
|
|
bool ValidateTexFormatAndType(WebGLenum format, WebGLenum type, int jsArrayType,
|
2010-06-30 08:49:59 -07:00
|
|
|
PRUint32 *texelSize, const char *info);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ValidateDrawModeEnum(WebGLenum mode, const char *info);
|
|
|
|
bool ValidateAttribIndex(WebGLuint index, const char *info);
|
|
|
|
bool ValidateStencilParamsForDrawCall();
|
2011-07-07 17:01:12 -07:00
|
|
|
|
2011-09-07 14:17:44 -07:00
|
|
|
bool ValidateGLSLVariableName(const nsAString& name, const char *info);
|
|
|
|
bool ValidateGLSLCharacter(PRUnichar c);
|
|
|
|
bool ValidateGLSLString(const nsAString& string, const char *info);
|
2011-07-28 14:12:31 -07:00
|
|
|
|
2011-07-07 17:01:12 -07:00
|
|
|
static PRUint32 GetTexelSize(WebGLenum format, WebGLenum type);
|
2010-06-30 08:48:30 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
void Invalidate();
|
2010-07-18 22:01:14 -07:00
|
|
|
void DestroyResourcesAndContext();
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-05-17 21:04:22 -07:00
|
|
|
void MakeContextCurrent() { gl->MakeCurrent(); }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
// helpers
|
2010-05-28 15:52:39 -07:00
|
|
|
nsresult TexImage2D_base(WebGLenum target, WebGLint level, WebGLenum internalformat,
|
2010-10-15 14:50:15 -07:00
|
|
|
WebGLsizei width, WebGLsizei height, WebGLsizei srcStrideOrZero, WebGLint border,
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLenum format, WebGLenum type,
|
2010-10-15 14:50:15 -07:00
|
|
|
void *data, PRUint32 byteLength,
|
2011-05-20 12:53:53 -07:00
|
|
|
int jsArrayType,
|
2011-09-28 23:19:26 -07:00
|
|
|
int srcFormat, bool srcPremultiplied);
|
2010-05-28 15:52:39 -07:00
|
|
|
nsresult TexSubImage2D_base(WebGLenum target, WebGLint level,
|
|
|
|
WebGLint xoffset, WebGLint yoffset,
|
2010-10-15 14:50:15 -07:00
|
|
|
WebGLsizei width, WebGLsizei height, WebGLsizei srcStrideOrZero,
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLenum format, WebGLenum type,
|
2010-10-15 14:50:15 -07:00
|
|
|
void *pixels, PRUint32 byteLength,
|
2011-05-20 12:53:53 -07:00
|
|
|
int jsArrayType,
|
2011-09-28 23:19:26 -07:00
|
|
|
int srcFormat, bool srcPremultiplied);
|
2010-06-19 07:46:12 -07:00
|
|
|
nsresult ReadPixels_base(WebGLint x, WebGLint y, WebGLsizei width, WebGLsizei height,
|
2011-10-31 16:55:01 -07:00
|
|
|
WebGLenum format, WebGLenum type, JSObject* pixels);
|
2010-08-23 14:03:44 -07:00
|
|
|
nsresult TexParameter_base(WebGLenum target, WebGLenum pname,
|
|
|
|
WebGLint *intParamPtr, WebGLfloat *floatParamPtr);
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-10-15 14:50:15 -07:00
|
|
|
void ConvertImage(size_t width, size_t height, size_t srcStride, size_t dstStride,
|
2010-10-15 14:50:15 -07:00
|
|
|
const PRUint8*src, PRUint8 *dst,
|
2011-09-28 23:19:26 -07:00
|
|
|
int srcFormat, bool srcPremultiplied,
|
|
|
|
int dstFormat, bool dstPremultiplied,
|
2010-10-15 14:50:15 -07:00
|
|
|
size_t dstTexelSize);
|
|
|
|
|
2010-01-22 13:34:25 -08:00
|
|
|
nsresult DOMElementToImageSurface(nsIDOMElement *imageOrCanvas,
|
|
|
|
gfxImageSurface **imageOut,
|
2010-10-15 14:50:15 -07:00
|
|
|
int *format);
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-01-06 14:07:13 -08:00
|
|
|
nsresult CopyTexSubImage2D_base(WebGLenum target,
|
|
|
|
WebGLint level,
|
|
|
|
WebGLenum internalformat,
|
|
|
|
WebGLint xoffset,
|
|
|
|
WebGLint yoffset,
|
|
|
|
WebGLint x,
|
|
|
|
WebGLint y,
|
|
|
|
WebGLsizei width,
|
|
|
|
WebGLsizei height,
|
|
|
|
bool sub
|
|
|
|
);
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
// Conversion from public nsI* interfaces to concrete objects
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetConcreteObject(const char *info,
|
2010-07-16 07:30:32 -07:00
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
ConcreteObjectType **aConcreteObject,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull = 0,
|
|
|
|
bool *isDeleted = 0,
|
|
|
|
bool generateErrors = true);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetConcreteObjectAndGLName(const char *info,
|
2010-07-16 07:30:32 -07:00
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
ConcreteObjectType **aConcreteObject,
|
|
|
|
WebGLuint *aGLObjectName,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull = 0,
|
|
|
|
bool *isDeleted = 0);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
bool GetGLName(const char *info,
|
2010-07-16 07:30:32 -07:00
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLuint *aGLObjectName,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull = 0,
|
|
|
|
bool *isDeleted = 0);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
bool CanGetConcreteObject(const char *info,
|
2010-07-16 07:30:32 -07:00
|
|
|
BaseInterfaceType *aInterface,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull = 0,
|
|
|
|
bool *isDeleted = 0);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
2011-02-24 14:17:34 -08:00
|
|
|
PRInt32 MaxTextureSizeForTarget(WebGLenum target) const {
|
|
|
|
return target == LOCAL_GL_TEXTURE_2D ? mGLMaxTextureSize : mGLMaxCubeMapTextureSize;
|
|
|
|
}
|
2011-07-07 17:01:16 -07:00
|
|
|
|
|
|
|
/** like glBufferData but if the call may change the buffer size, checks any GL error generated
|
|
|
|
* by this glBufferData call and returns it */
|
|
|
|
GLenum CheckedBufferData(GLenum target,
|
|
|
|
GLsizeiptr size,
|
|
|
|
const GLvoid *data,
|
|
|
|
GLenum usage);
|
2011-07-07 17:01:16 -07:00
|
|
|
/** like glTexImage2D but if the call may change the texture size, checks any GL error generated
|
|
|
|
* by this glTexImage2D call and returns it */
|
|
|
|
GLenum CheckedTexImage2D(GLenum target,
|
|
|
|
GLint level,
|
|
|
|
GLenum internalFormat,
|
|
|
|
GLsizei width,
|
|
|
|
GLsizei height,
|
|
|
|
GLint border,
|
|
|
|
GLenum format,
|
|
|
|
GLenum type,
|
|
|
|
const GLvoid *data);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
void MaybeRestoreContext();
|
|
|
|
void ForceLoseContext();
|
|
|
|
void ForceRestoreContext();
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
// the buffers bound to the current program's attribs
|
|
|
|
nsTArray<WebGLVertexAttribData> mAttribBuffers;
|
|
|
|
|
|
|
|
|
|
|
|
// textures bound to
|
|
|
|
nsTArray<WebGLObjectRefPtr<WebGLTexture> > mBound2DTextures;
|
|
|
|
nsTArray<WebGLObjectRefPtr<WebGLTexture> > mBoundCubeMapTextures;
|
|
|
|
|
|
|
|
WebGLObjectRefPtr<WebGLBuffer> mBoundArrayBuffer;
|
|
|
|
WebGLObjectRefPtr<WebGLBuffer> mBoundElementArrayBuffer;
|
2011-01-05 13:08:53 -08:00
|
|
|
// note nsRefPtr -- this stays alive even after being deleted,
|
|
|
|
// and is only explicitly removed from the current state via
|
|
|
|
// a call to UseProgram.
|
|
|
|
nsRefPtr<WebGLProgram> mCurrentProgram;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
PRUint32 mMaxFramebufferColorAttachments;
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2009-12-07 15:10:04 -08:00
|
|
|
nsRefPtr<WebGLFramebuffer> mBoundFramebuffer;
|
2009-09-02 17:47:49 -07:00
|
|
|
nsRefPtr<WebGLRenderbuffer> mBoundRenderbuffer;
|
|
|
|
|
|
|
|
// lookup tables for GL name -> object wrapper
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLTexture> mMapTextures;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLBuffer> mMapBuffers;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLProgram> mMapPrograms;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLShader> mMapShaders;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLFramebuffer> mMapFramebuffers;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLRenderbuffer> mMapRenderbuffers;
|
|
|
|
|
2010-10-15 14:50:15 -07:00
|
|
|
// PixelStore parameters
|
2010-12-06 03:34:35 -08:00
|
|
|
PRUint32 mPixelStorePackAlignment, mPixelStoreUnpackAlignment, mPixelStoreColorspaceConversion;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mPixelStoreFlipY, mPixelStorePremultiplyAlpha;
|
2010-06-15 08:59:39 -07:00
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
FakeBlackStatus mFakeBlackStatus;
|
|
|
|
|
|
|
|
WebGLuint mBlackTexture2D, mBlackTextureCubeMap;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mBlackTexturesAreInitialized;
|
2010-08-23 14:03:53 -07:00
|
|
|
|
2010-09-02 07:34:08 -07:00
|
|
|
WebGLfloat mVertexAttrib0Vector[4];
|
2011-02-24 14:17:34 -08:00
|
|
|
WebGLfloat mFakeVertexAttrib0BufferObjectVector[4];
|
|
|
|
size_t mFakeVertexAttrib0BufferObjectSize;
|
|
|
|
GLuint mFakeVertexAttrib0BufferObject;
|
|
|
|
int mFakeVertexAttrib0BufferStatus;
|
2010-09-02 07:34:08 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
WebGLint mStencilRefFront, mStencilRefBack;
|
|
|
|
WebGLuint mStencilValueMaskFront, mStencilValueMaskBack,
|
|
|
|
mStencilWriteMaskFront, mStencilWriteMaskBack;
|
2011-05-20 12:53:53 -07:00
|
|
|
realGLboolean mColorWriteMask[4];
|
|
|
|
realGLboolean mDepthWriteMask;
|
|
|
|
realGLboolean mScissorTestEnabled;
|
|
|
|
realGLboolean mDitherEnabled;
|
|
|
|
WebGLfloat mColorClearValue[4];
|
|
|
|
WebGLint mStencilClearValue;
|
|
|
|
WebGLfloat mDepthClearValue;
|
2010-12-06 03:34:35 -08:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
int mBackbufferClearingStatus;
|
|
|
|
|
2011-10-26 13:00:44 -07:00
|
|
|
nsCOMPtr<nsITimer> mContextRestorer;
|
|
|
|
bool mContextLost;
|
|
|
|
bool mAllowRestore;
|
2011-11-18 19:57:29 -08:00
|
|
|
bool mRobustnessTimerRunning;
|
|
|
|
bool mDrawSinceRobustnessTimerSet;
|
2011-10-26 13:00:44 -07:00
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
public:
|
2009-09-02 17:47:49 -07:00
|
|
|
// console logging helpers
|
2010-09-13 08:40:01 -07:00
|
|
|
static void LogMessage(const char *fmt, ...);
|
2010-05-15 06:55:45 -07:00
|
|
|
static void LogMessage(const char *fmt, va_list ap);
|
2010-09-13 08:40:01 -07:00
|
|
|
void LogMessageIfVerbose(const char *fmt, ...);
|
2010-10-15 14:50:15 -07:00
|
|
|
void LogMessageIfVerbose(const char *fmt, va_list ap);
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
friend class WebGLTexture;
|
2010-11-05 12:57:58 -07:00
|
|
|
friend class WebGLFramebuffer;
|
2011-11-03 07:50:40 -07:00
|
|
|
friend class WebGLProgram;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
// this class is a mixin for the named type wrappers, and is used
|
|
|
|
// by WebGLObjectRefPtr to tell the object who holds references, so that
|
|
|
|
// we can zero them out appropriately when the object is deleted, because
|
|
|
|
// it will be unbound in the GL.
|
2011-10-03 05:41:56 -07:00
|
|
|
//
|
|
|
|
// PreallocatedOwnersCapacity is the preallocated capacity for the array of refptrs to owners.
|
|
|
|
// Having some minimal preallocated capacity is an important optimization, see bug 522193. In this
|
|
|
|
// bug, a benchmark was using WebGLBuffer with a number of owners oscillating between 0 and 2.
|
|
|
|
// At this time mRefOwners was a nsTArray, and the too frequent reallocations were slowing us down.
|
|
|
|
template<int PreallocatedOwnersCapacity>
|
2009-09-02 17:47:49 -07:00
|
|
|
class WebGLZeroingObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WebGLZeroingObject()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
void AddRefOwner(WebGLObjectBaseRefPtr *owner) {
|
|
|
|
mRefOwners.AppendElement(owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveRefOwner(WebGLObjectBaseRefPtr *owner) {
|
|
|
|
mRefOwners.RemoveElement(owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ZeroOwners() {
|
|
|
|
WebGLObjectBaseRefPtr **owners = mRefOwners.Elements();
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < mRefOwners.Length(); i++) {
|
|
|
|
owners[i]->Zero();
|
|
|
|
}
|
|
|
|
|
|
|
|
mRefOwners.Clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2011-10-03 05:41:56 -07:00
|
|
|
nsAutoTArray<WebGLObjectBaseRefPtr *, PreallocatedOwnersCapacity> mRefOwners;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
// this class is a mixin for GL objects that have dimensions
|
|
|
|
// that we need to track.
|
2010-05-15 05:07:30 -07:00
|
|
|
class WebGLRectangleObject
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
WebGLRectangleObject()
|
|
|
|
: mWidth(0), mHeight(0) { }
|
|
|
|
|
|
|
|
public:
|
2011-07-07 17:01:16 -07:00
|
|
|
WebGLsizei width() const { return mWidth; }
|
2010-05-28 15:52:39 -07:00
|
|
|
void width(WebGLsizei value) { mWidth = value; }
|
2010-05-15 05:07:30 -07:00
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
WebGLsizei height() const { return mHeight; }
|
2010-05-28 15:52:39 -07:00
|
|
|
void height(WebGLsizei value) { mHeight = value; }
|
2010-05-15 05:07:30 -07:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
void setDimensions(WebGLsizei width, WebGLsizei height) {
|
2010-05-15 05:07:30 -07:00
|
|
|
mWidth = width;
|
|
|
|
mHeight = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDimensions(WebGLRectangleObject *rect) {
|
|
|
|
if (rect) {
|
|
|
|
mWidth = rect->width();
|
|
|
|
mHeight = rect->height();
|
|
|
|
} else {
|
|
|
|
mWidth = 0;
|
|
|
|
mHeight = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:17 -07:00
|
|
|
bool HasSameDimensionsAs(const WebGLRectangleObject& other) const {
|
|
|
|
return width() == other.width() && height() == other.height();
|
|
|
|
}
|
|
|
|
|
2010-05-15 05:07:30 -07:00
|
|
|
protected:
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLsizei mWidth;
|
|
|
|
WebGLsizei mHeight;
|
2010-05-15 05:07:30 -07:00
|
|
|
};
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
// This class is a mixin for objects that are tied to a specific
|
|
|
|
// context (which is to say, all of them). They provide initialization
|
|
|
|
// as well as comparison with the current context.
|
|
|
|
class WebGLContextBoundObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WebGLContextBoundObject(WebGLContext *context) {
|
|
|
|
mContext = context;
|
|
|
|
mContextGeneration = context->Generation();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsCompatibleWithContext(WebGLContext *other) {
|
2010-06-04 12:03:37 -07:00
|
|
|
return mContext == other &&
|
|
|
|
mContextGeneration == other->Generation();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
WebGLContext *mContext;
|
|
|
|
PRUint32 mContextGeneration;
|
2010-05-15 05:07:30 -07:00
|
|
|
};
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
class WebGLBuffer :
|
|
|
|
public nsIWebGLBuffer,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // almost never has more than 8 owners
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLBuffer(WebGLContext *context, WebGLuint name) :
|
|
|
|
WebGLContextBoundObject(context),
|
2011-10-17 07:59:28 -07:00
|
|
|
mName(name), mDeleted(false), mHasEverBeenBound(false),
|
2010-06-04 12:03:37 -07:00
|
|
|
mByteLength(0), mTarget(LOCAL_GL_NONE), mData(nsnull)
|
2011-07-07 17:01:15 -07:00
|
|
|
{}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
~WebGLBuffer() {
|
|
|
|
Delete();
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
ZeroOwners();
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
free(mData);
|
|
|
|
mData = nsnull;
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2010-01-22 13:34:25 -08:00
|
|
|
mByteLength = 0;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-01-22 13:34:25 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() const { return mDeleted; }
|
|
|
|
bool HasEverBeenBound() { return mHasEverBeenBound; }
|
|
|
|
void SetHasEverBeenBound(bool x) { mHasEverBeenBound = x; }
|
2010-06-01 23:09:18 -07:00
|
|
|
GLuint GLName() const { return mName; }
|
|
|
|
GLuint ByteLength() const { return mByteLength; }
|
|
|
|
GLenum Target() const { return mTarget; }
|
|
|
|
const void *Data() const { return mData; }
|
|
|
|
|
|
|
|
void SetByteLength(GLuint byteLength) { mByteLength = byteLength; }
|
|
|
|
void SetTarget(GLenum target) { mTarget = target; }
|
|
|
|
|
|
|
|
// element array buffers are the only buffers for which we need to keep a copy of the data.
|
|
|
|
// this method assumes that the byte length has previously been set by calling SetByteLength.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool CopyDataIfElementArray(const void* data) {
|
2010-06-01 23:09:18 -07:00
|
|
|
if (mTarget == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
mData = realloc(mData, mByteLength);
|
2011-09-09 15:00:20 -07:00
|
|
|
if (!mData) {
|
|
|
|
mByteLength = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-09-09 15:00:20 -07:00
|
|
|
}
|
2010-06-01 23:09:18 -07:00
|
|
|
memcpy(mData, data, mByteLength);
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-01 23:09:18 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
// same comments as for CopyElementArrayData
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ZeroDataIfElementArray() {
|
2010-06-01 23:09:18 -07:00
|
|
|
if (mTarget == LOCAL_GL_ELEMENT_ARRAY_BUFFER) {
|
|
|
|
mData = realloc(mData, mByteLength);
|
2011-09-09 15:00:20 -07:00
|
|
|
if (!mData) {
|
|
|
|
mByteLength = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-09-09 15:00:20 -07:00
|
|
|
}
|
2010-06-01 23:09:18 -07:00
|
|
|
memset(mData, 0, mByteLength);
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-01 23:09:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// same comments as for CopyElementArrayData
|
|
|
|
void CopySubDataIfElementArray(GLuint byteOffset, GLuint byteLength, const void* data) {
|
2011-09-09 15:00:20 -07:00
|
|
|
if (mTarget == LOCAL_GL_ELEMENT_ARRAY_BUFFER && mByteLength) {
|
2010-06-01 23:09:18 -07:00
|
|
|
memcpy((void*) (size_t(mData)+byteOffset), data, byteLength);
|
|
|
|
}
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
// this method too is only for element array buffers. It returns the maximum value in the part of
|
|
|
|
// the buffer starting at given offset, consisting of given count of elements. The type T is the type
|
|
|
|
// to interprete the array elements as, must be GLushort or GLubyte.
|
|
|
|
template<typename T>
|
2011-01-25 19:19:46 -08:00
|
|
|
PRInt32 FindMaxElementInSubArray(GLuint count, GLuint byteOffset)
|
2010-06-01 23:09:18 -07:00
|
|
|
{
|
|
|
|
const T* start = reinterpret_cast<T*>(reinterpret_cast<size_t>(mData) + byteOffset);
|
|
|
|
const T* stop = start + count;
|
|
|
|
T result = 0;
|
|
|
|
for(const T* ptr = start; ptr != stop; ++ptr) {
|
|
|
|
if (*ptr > result) result = *ptr;
|
|
|
|
}
|
|
|
|
return result;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2011-01-25 19:19:46 -08:00
|
|
|
void InvalidateCachedMaxElements() {
|
2011-10-17 07:59:28 -07:00
|
|
|
mHasCachedMaxUbyteElement = false;
|
|
|
|
mHasCachedMaxUshortElement = false;
|
2011-01-25 19:19:46 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 FindMaxUbyteElement() {
|
|
|
|
if (mHasCachedMaxUbyteElement) {
|
|
|
|
return mCachedMaxUbyteElement;
|
|
|
|
} else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mHasCachedMaxUbyteElement = true;
|
2011-01-25 19:19:46 -08:00
|
|
|
mCachedMaxUbyteElement = FindMaxElementInSubArray<GLubyte>(mByteLength, 0);
|
|
|
|
return mCachedMaxUbyteElement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 FindMaxUshortElement() {
|
|
|
|
if (mHasCachedMaxUshortElement) {
|
|
|
|
return mCachedMaxUshortElement;
|
|
|
|
} else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mHasCachedMaxUshortElement = true;
|
2011-01-25 19:19:46 -08:00
|
|
|
mCachedMaxUshortElement = FindMaxElementInSubArray<GLshort>(mByteLength>>1, 0);
|
|
|
|
return mCachedMaxUshortElement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLBUFFER
|
|
|
|
protected:
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mName;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
|
|
|
bool mHasEverBeenBound;
|
2010-06-01 23:09:18 -07:00
|
|
|
GLuint mByteLength;
|
|
|
|
GLenum mTarget;
|
2011-01-25 19:19:46 -08:00
|
|
|
|
|
|
|
PRUint8 mCachedMaxUbyteElement;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasCachedMaxUbyteElement;
|
2011-01-25 19:19:46 -08:00
|
|
|
PRUint16 mCachedMaxUshortElement;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHasCachedMaxUshortElement;
|
2011-02-11 15:11:30 -08:00
|
|
|
|
2010-06-01 23:09:18 -07:00
|
|
|
void* mData; // in the case of an Element Array Buffer, we keep a copy.
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
class WebGLTexture :
|
|
|
|
public nsIWebGLTexture,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // almost never has more than 8 owners
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLTexture(WebGLContext *context, WebGLuint name) :
|
|
|
|
WebGLContextBoundObject(context),
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted(false), mHasEverBeenBound(false), mName(name),
|
2010-08-23 14:03:53 -07:00
|
|
|
mTarget(0),
|
|
|
|
mMinFilter(LOCAL_GL_NEAREST_MIPMAP_LINEAR),
|
|
|
|
mMagFilter(LOCAL_GL_LINEAR),
|
|
|
|
mWrapS(LOCAL_GL_REPEAT),
|
|
|
|
mWrapT(LOCAL_GL_REPEAT),
|
|
|
|
mFacesCount(0),
|
|
|
|
mMaxLevelWithCustomImages(0),
|
2011-10-17 07:59:28 -07:00
|
|
|
mHaveGeneratedMipmap(false),
|
2010-09-02 07:29:41 -07:00
|
|
|
mFakeBlackStatus(DoNotNeedFakeBlack)
|
2010-12-06 03:34:35 -08:00
|
|
|
{
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
ZeroOwners();
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() { return mDeleted; }
|
|
|
|
bool HasEverBeenBound() { return mHasEverBeenBound; }
|
|
|
|
void SetHasEverBeenBound(bool x) { mHasEverBeenBound = x; }
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint GLName() { return mName; }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLTEXTURE
|
2010-08-23 14:03:53 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
protected:
|
2010-11-16 20:33:03 -08:00
|
|
|
friend class WebGLContext;
|
|
|
|
friend class WebGLFramebuffer;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
|
|
|
bool mHasEverBeenBound;
|
2010-08-23 14:03:53 -07:00
|
|
|
WebGLuint mName;
|
|
|
|
|
2010-11-16 20:33:03 -08:00
|
|
|
// we store information about the various images that are part of
|
|
|
|
// this texture (cubemap faces, mipmap levels)
|
2010-08-23 14:03:53 -07:00
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
public:
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
struct ImageInfo {
|
2011-10-17 07:59:28 -07:00
|
|
|
ImageInfo() : mWidth(0), mHeight(0), mFormat(0), mType(0), mIsDefined(false) {}
|
2011-07-07 17:01:17 -07:00
|
|
|
ImageInfo(WebGLsizei width, WebGLsizei height,
|
|
|
|
WebGLenum format, WebGLenum type)
|
2011-10-17 07:59:28 -07:00
|
|
|
: mWidth(width), mHeight(height), mFormat(format), mType(type), mIsDefined(true) {}
|
2011-07-07 17:01:17 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool operator==(const ImageInfo& a) const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return mWidth == a.mWidth && mHeight == a.mHeight &&
|
|
|
|
mFormat == a.mFormat && mType == a.mType;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool operator!=(const ImageInfo& a) const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return !(*this == a);
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsSquare() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return mWidth == mHeight;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsPositive() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return mWidth > 0 && mHeight > 0;
|
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsPowerOfTwo() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return is_pot_assuming_nonnegative(mWidth) &&
|
|
|
|
is_pot_assuming_nonnegative(mHeight); // negative sizes should never happen (caught in texImage2D...)
|
|
|
|
}
|
2011-07-07 17:01:12 -07:00
|
|
|
PRInt64 MemoryUsage() const {
|
|
|
|
if (!mIsDefined)
|
|
|
|
return 0;
|
|
|
|
PRInt64 texelSize = WebGLContext::GetTexelSize(mFormat, mType);
|
|
|
|
return PRInt64(mWidth) * PRInt64(mHeight) * texelSize;
|
|
|
|
}
|
2010-08-23 14:03:53 -07:00
|
|
|
WebGLsizei mWidth, mHeight;
|
|
|
|
WebGLenum mFormat, mType;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsDefined;
|
2010-08-23 14:03:53 -07:00
|
|
|
};
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
ImageInfo& ImageInfoAt(size_t level, size_t face = 0) {
|
2010-08-23 14:03:53 -07:00
|
|
|
#ifdef DEBUG
|
|
|
|
if (face >= mFacesCount)
|
|
|
|
NS_ERROR("wrong face index, must be 0 for TEXTURE_2D and at most 5 for cube maps");
|
|
|
|
#endif
|
|
|
|
// no need to check level as a wrong value would be caught by ElementAt().
|
|
|
|
return mImageInfos.ElementAt(level * mFacesCount + face);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ImageInfo& ImageInfoAt(size_t level, size_t face) const {
|
|
|
|
return const_cast<WebGLTexture*>(this)->ImageInfoAt(level, face);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasImageInfoAt(size_t level, size_t face) const {
|
2011-11-28 11:30:28 -08:00
|
|
|
CheckedUint32 checked_index = CheckedUint32(level) * mFacesCount + face;
|
|
|
|
return checked_index.valid() &&
|
|
|
|
checked_index.value() < mImageInfos.Length() &&
|
|
|
|
ImageInfoAt(level, face).mIsDefined;
|
2011-02-24 14:17:34 -08:00
|
|
|
}
|
|
|
|
|
2011-02-24 14:17:34 -08:00
|
|
|
static size_t FaceForTarget(WebGLenum target) {
|
|
|
|
return target == LOCAL_GL_TEXTURE_2D ? 0 : target - LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:12 -07:00
|
|
|
PRInt64 MemoryUsage() const {
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t face = 0; face < mFacesCount; face++) {
|
|
|
|
if (mHaveGeneratedMipmap) {
|
|
|
|
// Each mipmap level is 1/4 the size of the previous level
|
|
|
|
// 1 + x + x^2 + ... = 1/(1-x)
|
|
|
|
// for x = 1/4, we get 1/(1-1/4) = 4/3
|
|
|
|
result += ImageInfoAt(0, face).MemoryUsage() * 4 / 3;
|
|
|
|
} else {
|
|
|
|
for(size_t level = 0; level <= mMaxLevelWithCustomImages; level++)
|
|
|
|
result += ImageInfoAt(level, face).MemoryUsage();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-12-06 03:34:35 -08:00
|
|
|
protected:
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
WebGLenum mTarget;
|
|
|
|
WebGLenum mMinFilter, mMagFilter, mWrapS, mWrapT;
|
|
|
|
|
|
|
|
size_t mFacesCount, mMaxLevelWithCustomImages;
|
|
|
|
nsTArray<ImageInfo> mImageInfos;
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mHaveGeneratedMipmap;
|
2010-08-23 14:03:53 -07:00
|
|
|
FakeBlackStatus mFakeBlackStatus;
|
|
|
|
|
|
|
|
void EnsureMaxLevelWithCustomImagesAtLeast(size_t aMaxLevelWithCustomImages) {
|
2011-06-02 05:56:50 -07:00
|
|
|
mMaxLevelWithCustomImages = NS_MAX(mMaxLevelWithCustomImages, aMaxLevelWithCustomImages);
|
2010-08-23 14:03:53 -07:00
|
|
|
mImageInfos.EnsureLengthAtLeast((mMaxLevelWithCustomImages + 1) * mFacesCount);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool CheckFloatTextureFilterParams() const {
|
2011-05-20 12:53:53 -07:00
|
|
|
// Without OES_texture_float_linear, only NEAREST and NEAREST_MIMPAMP_NEAREST are supported
|
|
|
|
return (mMagFilter == LOCAL_GL_NEAREST) &&
|
|
|
|
(mMinFilter == LOCAL_GL_NEAREST || mMinFilter == LOCAL_GL_NEAREST_MIPMAP_NEAREST);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AreBothWrapModesClampToEdge() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
return mWrapS == LOCAL_GL_CLAMP_TO_EDGE && mWrapT == LOCAL_GL_CLAMP_TO_EDGE;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool DoesTexture2DMipmapHaveAllLevelsConsistentlyDefined(size_t face) const {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (mHaveGeneratedMipmap)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
ImageInfo expected = ImageInfoAt(0, face);
|
|
|
|
|
|
|
|
// checks if custom level>0 images are all defined up to the highest level defined
|
|
|
|
// and have the expected dimensions
|
|
|
|
for (size_t level = 0; level <= mMaxLevelWithCustomImages; ++level) {
|
|
|
|
const ImageInfo& actual = ImageInfoAt(level, face);
|
|
|
|
if (actual != expected)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-06-02 05:56:50 -07:00
|
|
|
expected.mWidth = NS_MAX(1, expected.mWidth >> 1);
|
|
|
|
expected.mHeight = NS_MAX(1, expected.mHeight >> 1);
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
// if the current level has size 1x1, we can stop here: the spec doesn't seem to forbid the existence
|
|
|
|
// of extra useless levels.
|
|
|
|
if (actual.mWidth == 1 && actual.mHeight == 1)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// if we're here, we've exhausted all levels without finding a 1x1 image
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
void SetDontKnowIfNeedFakeBlack() {
|
|
|
|
mFakeBlackStatus = DontKnowIfNeedFakeBlack;
|
|
|
|
mContext->SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Bind(WebGLenum aTarget) {
|
|
|
|
// this function should only be called by bindTexture().
|
|
|
|
// it assumes that the GL context is already current.
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool firstTimeThisTextureIsBound = !mHasEverBeenBound;
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
if (!firstTimeThisTextureIsBound && aTarget != mTarget) {
|
|
|
|
mContext->ErrorInvalidOperation("bindTexture: this texture has already been bound to a different target");
|
|
|
|
// very important to return here before modifying texture state! This was the place when I lost a whole day figuring
|
|
|
|
// very strange 'invalid write' crashes.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mTarget = aTarget;
|
|
|
|
|
|
|
|
mContext->gl->fBindTexture(mTarget, mName);
|
|
|
|
|
|
|
|
if (firstTimeThisTextureIsBound) {
|
|
|
|
mFacesCount = (mTarget == LOCAL_GL_TEXTURE_2D) ? 1 : 6;
|
|
|
|
EnsureMaxLevelWithCustomImagesAtLeast(0);
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
|
|
|
|
// thanks to the WebKit people for finding this out: GL_TEXTURE_WRAP_R is not
|
|
|
|
// present in GLES 2, but is present in GL and it seems as if for cube maps
|
|
|
|
// we need to set it to GL_CLAMP_TO_EDGE to get the expected GLES behavior.
|
|
|
|
if (mTarget == LOCAL_GL_TEXTURE_CUBE_MAP && !mContext->gl->IsGLES2())
|
|
|
|
mContext->gl->fTexParameteri(mTarget, LOCAL_GL_TEXTURE_WRAP_R, LOCAL_GL_CLAMP_TO_EDGE);
|
|
|
|
}
|
2011-02-11 15:11:30 -08:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mHasEverBeenBound = true;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetImageInfo(WebGLenum aTarget, WebGLint aLevel,
|
|
|
|
WebGLsizei aWidth, WebGLsizei aHeight,
|
2011-07-07 17:01:17 -07:00
|
|
|
WebGLenum aFormat, WebGLenum aType)
|
2011-02-24 14:17:34 -08:00
|
|
|
{
|
|
|
|
if ( (aTarget == LOCAL_GL_TEXTURE_2D) != (mTarget == LOCAL_GL_TEXTURE_2D) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
size_t face = FaceForTarget(aTarget);
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
EnsureMaxLevelWithCustomImagesAtLeast(aLevel);
|
|
|
|
|
2011-07-07 17:01:17 -07:00
|
|
|
ImageInfoAt(aLevel, face) = ImageInfo(aWidth, aHeight, aFormat, aType);
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
if (aLevel > 0)
|
|
|
|
SetCustomMipmap();
|
|
|
|
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetMinFilter(WebGLenum aMinFilter) {
|
|
|
|
mMinFilter = aMinFilter;
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
void SetMagFilter(WebGLenum aMagFilter) {
|
|
|
|
mMagFilter = aMagFilter;
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
void SetWrapS(WebGLenum aWrapS) {
|
|
|
|
mWrapS = aWrapS;
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
void SetWrapT(WebGLenum aWrapT) {
|
|
|
|
mWrapT = aWrapT;
|
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
2011-09-09 15:00:20 -07:00
|
|
|
WebGLenum MinFilter() const { return mMinFilter; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool DoesMinFilterRequireMipmap() const {
|
2011-09-09 15:00:20 -07:00
|
|
|
return !(mMinFilter == LOCAL_GL_NEAREST || mMinFilter == LOCAL_GL_LINEAR);
|
|
|
|
}
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
void SetGeneratedMipmap() {
|
|
|
|
if (!mHaveGeneratedMipmap) {
|
2011-10-17 07:59:28 -07:00
|
|
|
mHaveGeneratedMipmap = true;
|
2010-08-23 14:03:53 -07:00
|
|
|
SetDontKnowIfNeedFakeBlack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetCustomMipmap() {
|
|
|
|
if (mHaveGeneratedMipmap) {
|
|
|
|
// if we were in GeneratedMipmap mode and are now switching to CustomMipmap mode,
|
|
|
|
// we need to compute now all the mipmap image info.
|
|
|
|
|
|
|
|
// since we were in GeneratedMipmap mode, we know that the level 0 images all have the same info,
|
|
|
|
// and are power-of-two.
|
|
|
|
ImageInfo imageInfo = ImageInfoAt(0, 0);
|
|
|
|
NS_ASSERTION(imageInfo.IsPowerOfTwo(), "this texture is NPOT, so how could GenerateMipmap() ever accept it?");
|
|
|
|
|
2011-06-02 05:56:50 -07:00
|
|
|
WebGLsizei size = NS_MAX(imageInfo.mWidth, imageInfo.mHeight);
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
// so, the size is a power of two, let's find its log in base 2.
|
|
|
|
size_t maxLevel = 0;
|
|
|
|
for (WebGLsizei n = size; n > 1; n >>= 1)
|
|
|
|
++maxLevel;
|
|
|
|
|
|
|
|
EnsureMaxLevelWithCustomImagesAtLeast(maxLevel);
|
|
|
|
|
|
|
|
for (size_t level = 1; level <= maxLevel; ++level) {
|
|
|
|
// again, since the sizes are powers of two, no need for any max(1,x) computation
|
|
|
|
imageInfo.mWidth >>= 1;
|
|
|
|
imageInfo.mHeight >>= 1;
|
|
|
|
for(size_t face = 0; face < mFacesCount; ++face)
|
|
|
|
ImageInfoAt(level, face) = imageInfo;
|
|
|
|
}
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mHaveGeneratedMipmap = false;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsFirstImagePowerOfTwo() const {
|
2010-09-02 07:29:41 -07:00
|
|
|
return ImageInfoAt(0, 0).IsPowerOfTwo();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AreAllLevel0ImageInfosEqual() const {
|
2010-09-02 07:29:41 -07:00
|
|
|
for (size_t face = 1; face < mFacesCount; ++face) {
|
|
|
|
if (ImageInfoAt(0, face) != ImageInfoAt(0, 0))
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsMipmapTexture2DComplete() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (mTarget != LOCAL_GL_TEXTURE_2D)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-09-02 07:29:41 -07:00
|
|
|
if (!ImageInfoAt(0, 0).IsPositive())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
if (mHaveGeneratedMipmap)
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-08-23 14:03:53 -07:00
|
|
|
return DoesTexture2DMipmapHaveAllLevelsConsistentlyDefined(0);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsCubeComplete() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (mTarget != LOCAL_GL_TEXTURE_CUBE_MAP)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
const ImageInfo &first = ImageInfoAt(0, 0);
|
|
|
|
if (!first.IsPositive() || !first.IsSquare())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-09-02 07:29:41 -07:00
|
|
|
return AreAllLevel0ImageInfosEqual();
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsMipmapCubeComplete() const {
|
2010-08-23 14:03:53 -07:00
|
|
|
if (!IsCubeComplete()) // in particular, this checks that this is a cube map
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
for (size_t face = 0; face < mFacesCount; ++face) {
|
|
|
|
if (!DoesTexture2DMipmapHaveAllLevelsConsistentlyDefined(face))
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-08-23 14:03:53 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool NeedFakeBlack() {
|
2010-08-23 14:03:53 -07:00
|
|
|
// handle this case first, it's the generic case
|
|
|
|
if (mFakeBlackStatus == DoNotNeedFakeBlack)
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-08-23 14:03:53 -07:00
|
|
|
|
|
|
|
if (mFakeBlackStatus == DontKnowIfNeedFakeBlack) {
|
|
|
|
// Determine if the texture needs to be faked as a black texture.
|
|
|
|
// See 3.8.2 Shader Execution in the OpenGL ES 2.0.24 spec.
|
|
|
|
|
2010-10-15 14:50:15 -07:00
|
|
|
for (size_t face = 0; face < mFacesCount; ++face) {
|
2010-12-06 03:34:35 -08:00
|
|
|
if (!ImageInfoAt(0, face).mIsDefined) {
|
|
|
|
// In case of undefined texture image, we don't print any message because this is a very common
|
|
|
|
// and often legitimate case, for example when doing asynchronous texture loading.
|
|
|
|
// An extreme case of this is the photowall google demo.
|
|
|
|
// Exiting early here allows us to avoid making noise on valid webgl code.
|
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-10-15 14:50:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-02 07:29:41 -07:00
|
|
|
const char *msg_rendering_as_black
|
|
|
|
= "A texture is going to be rendered as if it were black, as per the OpenGL ES 2.0.24 spec section 3.8.2, "
|
|
|
|
"because it";
|
|
|
|
|
2010-08-23 14:03:53 -07:00
|
|
|
if (mTarget == LOCAL_GL_TEXTURE_2D)
|
|
|
|
{
|
|
|
|
if (DoesMinFilterRequireMipmap())
|
|
|
|
{
|
2010-09-02 07:29:41 -07:00
|
|
|
if (!IsMipmapTexture2DComplete()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose
|
|
|
|
("%s is a 2D texture, with a minification filter requiring a mipmap, "
|
|
|
|
"and is not mipmap complete (as defined in section 3.7.10).", msg_rendering_as_black);
|
2010-09-02 07:29:41 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
2011-05-20 12:53:53 -07:00
|
|
|
} else if (!ImageInfoAt(0).IsPowerOfTwo()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose
|
|
|
|
("%s is a 2D texture, with a minification filter requiring a mipmap, "
|
|
|
|
"and either its width or height is not a power of two.", msg_rendering_as_black);
|
2010-08-23 14:03:53 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // no mipmap required
|
|
|
|
{
|
2011-05-20 12:53:53 -07:00
|
|
|
if (!ImageInfoAt(0).IsPositive()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose
|
|
|
|
("%s is a 2D texture and its width or height is equal to zero.",
|
|
|
|
msg_rendering_as_black);
|
2010-09-02 07:29:41 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
2011-05-20 12:53:53 -07:00
|
|
|
} else if (!AreBothWrapModesClampToEdge() && !ImageInfoAt(0).IsPowerOfTwo()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose
|
|
|
|
("%s is a 2D texture, with a minification filter not requiring a mipmap, "
|
|
|
|
"with its width or height not a power of two, and with a wrap mode "
|
|
|
|
"different from CLAMP_TO_EDGE.", msg_rendering_as_black);
|
2010-08-23 14:03:53 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-09-02 07:29:41 -07:00
|
|
|
else // cube map
|
2010-08-23 14:03:53 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool areAllLevel0ImagesPOT = true;
|
2010-08-23 14:03:53 -07:00
|
|
|
for (size_t face = 0; face < mFacesCount; ++face)
|
|
|
|
areAllLevel0ImagesPOT &= ImageInfoAt(0, face).IsPowerOfTwo();
|
|
|
|
|
|
|
|
if (DoesMinFilterRequireMipmap())
|
|
|
|
{
|
2010-09-02 07:29:41 -07:00
|
|
|
if (!IsMipmapCubeComplete()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose("%s is a cube map texture, with a minification filter requiring a mipmap, "
|
2010-09-02 07:29:41 -07:00
|
|
|
"and is not mipmap cube complete (as defined in section 3.7.10).",
|
|
|
|
msg_rendering_as_black);
|
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
} else if (!areAllLevel0ImagesPOT) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose("%s is a cube map texture, with a minification filter requiring a mipmap, "
|
2010-09-02 07:29:41 -07:00
|
|
|
"and either the width or the height of some level 0 image is not a power of two.",
|
|
|
|
msg_rendering_as_black);
|
2010-08-23 14:03:53 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else // no mipmap required
|
|
|
|
{
|
2010-09-02 07:29:41 -07:00
|
|
|
if (!IsCubeComplete()) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose("%s is a cube map texture, with a minification filter not requiring a mipmap, "
|
2010-09-02 07:29:41 -07:00
|
|
|
"and is not cube complete (as defined in section 3.7.10).",
|
|
|
|
msg_rendering_as_black);
|
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
} else if (!AreBothWrapModesClampToEdge() && !areAllLevel0ImagesPOT) {
|
2010-09-13 08:40:01 -07:00
|
|
|
mContext->LogMessageIfVerbose("%s is a cube map texture, with a minification filter not requiring a mipmap, "
|
2010-09-02 07:29:41 -07:00
|
|
|
"with some level 0 image having width or height not a power of two, and with a wrap mode "
|
|
|
|
"different from CLAMP_TO_EDGE.", msg_rendering_as_black);
|
2010-08-23 14:03:53 -07:00
|
|
|
mFakeBlackStatus = DoNeedFakeBlack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
class WebGLShader :
|
|
|
|
public nsIWebGLShader,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // almost never has more than 8 owners
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLShader(WebGLContext *context, WebGLuint name, WebGLenum stype) :
|
|
|
|
WebGLContextBoundObject(context),
|
2011-10-17 07:59:28 -07:00
|
|
|
mName(name), mDeleted(false), mType(stype),
|
2011-11-03 07:50:40 -07:00
|
|
|
mNeedsTranslation(true), mAttachCount(0),
|
|
|
|
mDeletePending(false)
|
2010-06-04 12:03:33 -07:00
|
|
|
{ }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-11-03 07:50:40 -07:00
|
|
|
void DetachedFromProgram() {
|
|
|
|
DecrementAttachCount();
|
|
|
|
if (mDeletePending && AttachCount() <= 0) {
|
|
|
|
DeleteWhenNotAttached();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeleteWhenNotAttached() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (AttachCount() > 0) {
|
|
|
|
mDeletePending = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Delete();
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
2011-11-03 07:50:40 -07:00
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
ZeroOwners();
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2011-11-03 07:50:40 -07:00
|
|
|
mDeletePending = false;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-06-04 12:03:37 -07:00
|
|
|
|
2011-11-03 07:50:40 -07:00
|
|
|
bool Deleted() { return mDeleted; }
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint GLName() { return mName; }
|
2010-06-04 12:03:33 -07:00
|
|
|
WebGLenum ShaderType() { return mType; }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-11-03 07:50:40 -07:00
|
|
|
PRInt32 AttachCount() { return mAttachCount; }
|
2011-01-05 13:08:53 -08:00
|
|
|
void IncrementAttachCount() { mAttachCount++; }
|
|
|
|
void DecrementAttachCount() { mAttachCount--; }
|
|
|
|
|
2011-09-07 14:17:44 -07:00
|
|
|
void SetSource(const nsAString& src) {
|
2010-07-14 20:52:34 -07:00
|
|
|
// XXX do some quick gzip here maybe -- getting this will be very rare
|
|
|
|
mSource.Assign(src);
|
|
|
|
}
|
|
|
|
|
2011-09-07 14:17:44 -07:00
|
|
|
const nsString& Source() const { return mSource; }
|
2010-07-14 20:52:34 -07:00
|
|
|
|
|
|
|
void SetNeedsTranslation() { mNeedsTranslation = true; }
|
|
|
|
bool NeedsTranslation() const { return mNeedsTranslation; }
|
|
|
|
|
|
|
|
void SetTranslationSuccess() {
|
2011-10-17 07:59:28 -07:00
|
|
|
mTranslationLog.SetIsVoid(true);
|
2010-07-14 20:52:34 -07:00
|
|
|
mNeedsTranslation = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetTranslationFailure(const nsCString& msg) {
|
2011-09-07 14:17:44 -07:00
|
|
|
mTranslationLog.Assign(msg);
|
2010-07-14 20:52:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const nsCString& TranslationLog() const { return mTranslationLog; }
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
2010-06-04 12:03:33 -07:00
|
|
|
NS_DECL_NSIWEBGLSHADER
|
2009-09-02 17:47:49 -07:00
|
|
|
protected:
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mName;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
2010-06-04 12:03:33 -07:00
|
|
|
WebGLenum mType;
|
2011-09-07 14:17:44 -07:00
|
|
|
nsString mSource;
|
2010-07-14 20:52:34 -07:00
|
|
|
nsCString mTranslationLog;
|
|
|
|
bool mNeedsTranslation;
|
2011-11-03 07:50:40 -07:00
|
|
|
PRInt32 mAttachCount;
|
|
|
|
bool mDeletePending;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-06-04 12:03:33 -07:00
|
|
|
class WebGLProgram :
|
|
|
|
public nsIWebGLProgram,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // can actually have many more owners (WebGLUniformLocations),
|
|
|
|
// but that shouldn't be performance-critical as references to the uniformlocations are stored
|
|
|
|
// in mMapUniformLocations, limiting the churning
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLProgram(WebGLContext *context, WebGLuint name) :
|
|
|
|
WebGLContextBoundObject(context),
|
2011-10-17 07:59:28 -07:00
|
|
|
mName(name), mDeleted(false), mDeletePending(false),
|
|
|
|
mLinkStatus(false), mGeneration(0),
|
2010-06-10 10:45:00 -07:00
|
|
|
mUniformMaxNameLength(0), mAttribMaxNameLength(0),
|
|
|
|
mUniformCount(0), mAttribCount(0)
|
2010-06-08 14:25:27 -07:00
|
|
|
{
|
|
|
|
mMapUniformLocations.Init();
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-11-03 07:50:40 -07:00
|
|
|
void DeleteWhenNotCurrent() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mContext->mCurrentProgram == this) {
|
|
|
|
mDeletePending = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Delete();
|
|
|
|
}
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
2011-11-03 07:50:40 -07:00
|
|
|
|
|
|
|
DetachShaders();
|
2009-09-02 17:47:49 -07:00
|
|
|
ZeroOwners();
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2011-11-03 07:50:40 -07:00
|
|
|
mDeletePending = false;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2010-06-04 12:03:33 -07:00
|
|
|
|
2011-01-05 13:08:53 -08:00
|
|
|
void DetachShaders() {
|
|
|
|
for (PRUint32 i = 0; i < mAttachedShaders.Length(); ++i) {
|
2011-11-03 07:50:40 -07:00
|
|
|
WebGLShader* shader = mAttachedShaders[i];
|
|
|
|
if (shader)
|
|
|
|
shader->DetachedFromProgram();
|
2011-01-05 13:08:53 -08:00
|
|
|
}
|
|
|
|
mAttachedShaders.Clear();
|
|
|
|
}
|
|
|
|
|
2011-11-03 07:50:40 -07:00
|
|
|
void NoLongerCurrent() {
|
|
|
|
if (mDeletePending) {
|
|
|
|
DetachShaders();
|
|
|
|
DeleteWhenNotCurrent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Deleted() { return mDeleted; }
|
2011-10-17 07:59:28 -07:00
|
|
|
void SetDeletePending() { mDeletePending = true; }
|
|
|
|
void ClearDeletePending() { mDeletePending = false; }
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasDeletePending() { return mDeletePending; }
|
2011-01-05 13:08:53 -08:00
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint GLName() { return mName; }
|
2011-05-06 11:44:23 -07:00
|
|
|
const nsTArray<nsRefPtr<WebGLShader> >& AttachedShaders() const { return mAttachedShaders; }
|
2011-09-28 23:19:26 -07:00
|
|
|
bool LinkStatus() { return mLinkStatus; }
|
2010-07-03 15:32:19 -07:00
|
|
|
PRUint32 Generation() const { return mGeneration.value(); }
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetLinkStatus(bool val) { mLinkStatus = val; }
|
2010-06-04 12:03:33 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool ContainsShader(WebGLShader *shader) {
|
2010-06-04 12:03:33 -07:00
|
|
|
return mAttachedShaders.Contains(shader);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return true if the shader wasn't already attached
|
2011-09-28 23:19:26 -07:00
|
|
|
bool AttachShader(WebGLShader *shader) {
|
2010-06-04 12:03:33 -07:00
|
|
|
if (ContainsShader(shader))
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:33 -07:00
|
|
|
mAttachedShaders.AppendElement(shader);
|
2011-01-05 13:08:53 -08:00
|
|
|
shader->IncrementAttachCount();
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-04 12:03:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// return true if the shader was found and removed
|
2011-09-28 23:19:26 -07:00
|
|
|
bool DetachShader(WebGLShader *shader) {
|
2011-01-05 13:08:53 -08:00
|
|
|
if (mAttachedShaders.RemoveElement(shader)) {
|
2011-11-03 07:50:40 -07:00
|
|
|
shader->DetachedFromProgram();
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-01-05 13:08:53 -08:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:33 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasAttachedShaderOfType(GLenum shaderType) {
|
2010-06-04 12:03:33 -07:00
|
|
|
for (PRUint32 i = 0; i < mAttachedShaders.Length(); ++i) {
|
2011-05-06 11:44:23 -07:00
|
|
|
if (mAttachedShaders[i] && mAttachedShaders[i]->ShaderType() == shaderType) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-11-16 20:33:04 -08:00
|
|
|
}
|
2010-06-04 12:03:33 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:33 -07:00
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasBothShaderTypesAttached() {
|
2010-11-16 20:33:04 -08:00
|
|
|
return
|
|
|
|
HasAttachedShaderOfType(LOCAL_GL_VERTEX_SHADER) &&
|
|
|
|
HasAttachedShaderOfType(LOCAL_GL_FRAGMENT_SHADER);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool NextGeneration()
|
2010-06-08 14:25:27 -07:00
|
|
|
{
|
2010-07-03 15:32:19 -07:00
|
|
|
if (!(mGeneration+1).valid())
|
2011-10-17 07:59:28 -07:00
|
|
|
return false; // must exit without changing mGeneration
|
2010-07-03 15:32:19 -07:00
|
|
|
++mGeneration;
|
2010-06-08 14:25:27 -07:00
|
|
|
mMapUniformLocations.Clear();
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-08 14:25:27 -07:00
|
|
|
}
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2010-06-08 14:25:27 -07:00
|
|
|
|
|
|
|
already_AddRefed<WebGLUniformLocation> GetUniformLocationObject(GLint glLocation);
|
|
|
|
|
2010-06-10 10:45:00 -07:00
|
|
|
/* Called only after LinkProgram */
|
2011-09-28 23:19:26 -07:00
|
|
|
bool UpdateInfo(gl::GLContext *gl);
|
2010-06-10 10:45:00 -07:00
|
|
|
|
|
|
|
/* Getters for cached program info */
|
|
|
|
WebGLint UniformMaxNameLength() const { return mUniformMaxNameLength; }
|
|
|
|
WebGLint AttribMaxNameLength() const { return mAttribMaxNameLength; }
|
|
|
|
WebGLint UniformCount() const { return mUniformCount; }
|
|
|
|
WebGLint AttribCount() const { return mAttribCount; }
|
|
|
|
bool IsAttribInUse(unsigned i) const { return mAttribsInUse[i]; }
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
2010-06-04 12:03:33 -07:00
|
|
|
NS_DECL_NSIWEBGLPROGRAM
|
2009-09-02 17:47:49 -07:00
|
|
|
protected:
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mName;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
|
|
|
bool mDeletePending;
|
|
|
|
bool mLinkStatus;
|
2011-01-05 13:08:53 -08:00
|
|
|
// attached shaders of the program object
|
2011-05-06 11:44:23 -07:00
|
|
|
nsTArray<nsRefPtr<WebGLShader> > mAttachedShaders;
|
2010-07-03 15:32:19 -07:00
|
|
|
CheckedUint32 mGeneration;
|
2011-01-05 13:08:53 -08:00
|
|
|
|
|
|
|
// post-link data
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, WebGLUniformLocation> mMapUniformLocations;
|
2010-06-10 10:45:00 -07:00
|
|
|
GLint mUniformMaxNameLength;
|
|
|
|
GLint mAttribMaxNameLength;
|
|
|
|
GLint mUniformCount;
|
|
|
|
GLint mAttribCount;
|
|
|
|
std::vector<bool> mAttribsInUse;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
class WebGLRenderbuffer :
|
|
|
|
public nsIWebGLRenderbuffer,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // almost never has more than 8 owners
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLRectangleObject,
|
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLRenderbuffer(WebGLContext *context, WebGLuint name, WebGLuint secondBufferName = 0) :
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLContextBoundObject(context),
|
2010-11-05 12:57:58 -07:00
|
|
|
mName(name),
|
|
|
|
mInternalFormat(0),
|
2011-07-07 17:01:16 -07:00
|
|
|
mInternalFormatForGL(0),
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted(false), mHasEverBeenBound(false), mInitialized(false)
|
2010-06-04 12:03:37 -07:00
|
|
|
{ }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
ZeroOwners();
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() const { return mDeleted; }
|
|
|
|
bool HasEverBeenBound() { return mHasEverBeenBound; }
|
|
|
|
void SetHasEverBeenBound(bool x) { mHasEverBeenBound = x; }
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLuint GLName() const { return mName; }
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Initialized() const { return mInitialized; }
|
|
|
|
void SetInitialized(bool aInitialized) { mInitialized = aInitialized; }
|
2010-11-05 12:57:58 -07:00
|
|
|
|
|
|
|
WebGLenum InternalFormat() const { return mInternalFormat; }
|
|
|
|
void SetInternalFormat(WebGLenum aInternalFormat) { mInternalFormat = aInternalFormat; }
|
2011-07-07 17:01:16 -07:00
|
|
|
|
|
|
|
WebGLenum InternalFormatForGL() const { return mInternalFormatForGL; }
|
|
|
|
void SetInternalFormatForGL(WebGLenum aInternalFormatForGL) { mInternalFormatForGL = aInternalFormatForGL; }
|
|
|
|
|
|
|
|
PRInt64 MemoryUsage() const {
|
|
|
|
PRInt64 pixels = PRInt64(width()) * PRInt64(height());
|
|
|
|
switch (mInternalFormatForGL) {
|
|
|
|
case LOCAL_GL_STENCIL_INDEX8:
|
|
|
|
return pixels;
|
|
|
|
case LOCAL_GL_RGBA4:
|
|
|
|
case LOCAL_GL_RGB5_A1:
|
|
|
|
case LOCAL_GL_RGB565:
|
|
|
|
case LOCAL_GL_DEPTH_COMPONENT16:
|
|
|
|
return 2 * pixels;
|
|
|
|
case LOCAL_GL_RGB8:
|
|
|
|
case LOCAL_GL_DEPTH_COMPONENT24:
|
|
|
|
return 3*pixels;
|
|
|
|
case LOCAL_GL_RGBA8:
|
|
|
|
case LOCAL_GL_DEPTH24_STENCIL8:
|
|
|
|
return 4*pixels;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
NS_ABORT();
|
|
|
|
return 0;
|
|
|
|
}
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2010-11-05 12:57:58 -07:00
|
|
|
NS_DECL_NSIWEBGLRENDERBUFFER
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
protected:
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mName;
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLenum mInternalFormat;
|
2011-07-07 17:01:16 -07:00
|
|
|
WebGLenum mInternalFormatForGL;
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
|
|
|
bool mHasEverBeenBound;
|
|
|
|
bool mInitialized;
|
2010-11-05 12:57:58 -07:00
|
|
|
|
|
|
|
friend class WebGLFramebuffer;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-12-06 03:34:35 -08:00
|
|
|
class WebGLFramebufferAttachment
|
2011-07-07 17:01:16 -07:00
|
|
|
: public WebGLRectangleObject
|
2010-12-06 03:34:35 -08:00
|
|
|
{
|
2011-01-05 13:08:53 -08:00
|
|
|
// deleting a texture or renderbuffer immediately detaches it
|
|
|
|
WebGLObjectRefPtr<WebGLTexture> mTexturePtr;
|
|
|
|
WebGLObjectRefPtr<WebGLRenderbuffer> mRenderbufferPtr;
|
2010-12-06 03:34:35 -08:00
|
|
|
WebGLenum mAttachmentPoint;
|
2011-01-05 13:08:53 -08:00
|
|
|
WebGLint mTextureLevel;
|
|
|
|
WebGLenum mTextureCubeMapFace;
|
2010-12-06 03:34:35 -08:00
|
|
|
|
|
|
|
public:
|
|
|
|
WebGLFramebufferAttachment(WebGLenum aAttachmentPoint)
|
|
|
|
: mAttachmentPoint(aAttachmentPoint)
|
|
|
|
{}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsNull() const {
|
2010-12-06 03:34:35 -08:00
|
|
|
return !mTexturePtr && !mRenderbufferPtr;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasAlpha() const {
|
2010-12-06 03:34:35 -08:00
|
|
|
WebGLenum format = 0;
|
|
|
|
if (mTexturePtr)
|
|
|
|
format = mTexturePtr->ImageInfoAt(0,0).mFormat;
|
|
|
|
if (mRenderbufferPtr)
|
|
|
|
format = mRenderbufferPtr->InternalFormat();
|
|
|
|
return format == LOCAL_GL_RGBA ||
|
|
|
|
format == LOCAL_GL_LUMINANCE_ALPHA ||
|
|
|
|
format == LOCAL_GL_ALPHA ||
|
|
|
|
format == LOCAL_GL_RGBA4 ||
|
|
|
|
format == LOCAL_GL_RGB5_A1;
|
|
|
|
}
|
|
|
|
|
2011-01-05 13:08:53 -08:00
|
|
|
void SetTexture(WebGLTexture *tex, WebGLint level, WebGLenum face) {
|
2010-12-06 03:34:35 -08:00
|
|
|
mTexturePtr = tex;
|
|
|
|
mRenderbufferPtr = nsnull;
|
2011-01-05 13:08:53 -08:00
|
|
|
mTextureLevel = level;
|
|
|
|
mTextureCubeMapFace = face;
|
2011-07-07 17:01:16 -07:00
|
|
|
if (tex) {
|
|
|
|
const WebGLTexture::ImageInfo &imageInfo = tex->ImageInfoAt(level, face);
|
|
|
|
setDimensions(imageInfo.mWidth, imageInfo.mHeight);
|
|
|
|
} else {
|
|
|
|
setDimensions(0, 0);
|
|
|
|
}
|
2010-12-06 03:34:35 -08:00
|
|
|
}
|
|
|
|
void SetRenderbuffer(WebGLRenderbuffer *rb) {
|
|
|
|
mTexturePtr = nsnull;
|
|
|
|
mRenderbufferPtr = rb;
|
2011-07-07 17:01:16 -07:00
|
|
|
setDimensions(rb);
|
2010-12-06 03:34:35 -08:00
|
|
|
}
|
|
|
|
WebGLTexture *Texture() const {
|
|
|
|
return mTexturePtr.get();
|
|
|
|
}
|
|
|
|
WebGLRenderbuffer *Renderbuffer() const {
|
|
|
|
return mRenderbufferPtr.get();
|
|
|
|
}
|
2011-01-05 13:08:53 -08:00
|
|
|
WebGLint TextureLevel() const {
|
|
|
|
return mTextureLevel;
|
|
|
|
}
|
|
|
|
WebGLenum TextureCubeMapFace() const {
|
|
|
|
return mTextureCubeMapFace;
|
|
|
|
}
|
2010-12-06 03:34:35 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsIncompatibleWithAttachmentPoint() const
|
2010-12-06 03:34:35 -08:00
|
|
|
{
|
|
|
|
// textures can only be color textures in WebGL
|
|
|
|
if (mTexturePtr)
|
|
|
|
return mAttachmentPoint != LOCAL_GL_COLOR_ATTACHMENT0;
|
|
|
|
|
|
|
|
if (mRenderbufferPtr) {
|
|
|
|
WebGLenum format = mRenderbufferPtr->InternalFormat();
|
|
|
|
switch (mAttachmentPoint) {
|
|
|
|
case LOCAL_GL_COLOR_ATTACHMENT0:
|
|
|
|
return format != LOCAL_GL_RGB565 &&
|
|
|
|
format != LOCAL_GL_RGB5_A1 &&
|
|
|
|
format != LOCAL_GL_RGBA4;
|
|
|
|
case LOCAL_GL_DEPTH_ATTACHMENT:
|
|
|
|
return format != LOCAL_GL_DEPTH_COMPONENT16;
|
|
|
|
case LOCAL_GL_STENCIL_ATTACHMENT:
|
|
|
|
return format != LOCAL_GL_STENCIL_INDEX8;
|
|
|
|
case LOCAL_GL_DEPTH_STENCIL_ATTACHMENT:
|
|
|
|
return format != LOCAL_GL_DEPTH_STENCIL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return false; // no attachment at all, so no incompatibility
|
2010-12-06 03:34:35 -08:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasUninitializedRenderbuffer() const {
|
2010-12-06 03:34:35 -08:00
|
|
|
return mRenderbufferPtr && !mRenderbufferPtr->Initialized();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
class WebGLFramebuffer :
|
|
|
|
public nsIWebGLFramebuffer,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<8>, // almost never has more than 8 owners
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2009-09-02 17:47:49 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-05-19 13:46:08 -07:00
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLFramebuffer(WebGLContext *context, WebGLuint name) :
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLContextBoundObject(context),
|
2011-10-17 07:59:28 -07:00
|
|
|
mName(name), mDeleted(false), mHasEverBeenBound(false),
|
2010-12-06 03:34:35 -08:00
|
|
|
mColorAttachment(LOCAL_GL_COLOR_ATTACHMENT0),
|
|
|
|
mDepthAttachment(LOCAL_GL_DEPTH_ATTACHMENT),
|
|
|
|
mStencilAttachment(LOCAL_GL_STENCIL_ATTACHMENT),
|
|
|
|
mDepthStencilAttachment(LOCAL_GL_DEPTH_STENCIL_ATTACHMENT)
|
2010-06-04 12:03:37 -07:00
|
|
|
{ }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
|
|
|
ZeroOwners();
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() { return mDeleted; }
|
|
|
|
bool HasEverBeenBound() { return mHasEverBeenBound; }
|
|
|
|
void SetHasEverBeenBound(bool x) { mHasEverBeenBound = x; }
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint GLName() { return mName; }
|
2011-07-07 17:01:16 -07:00
|
|
|
|
|
|
|
WebGLsizei width() { return mColorAttachment.width(); }
|
|
|
|
WebGLsizei height() { return mColorAttachment.height(); }
|
2009-09-02 17:47:49 -07:00
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
nsresult FramebufferRenderbuffer(WebGLenum target,
|
|
|
|
WebGLenum attachment,
|
|
|
|
WebGLenum rbtarget,
|
|
|
|
nsIWebGLRenderbuffer *rbobj)
|
|
|
|
{
|
|
|
|
WebGLuint renderbuffername;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isNull;
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLRenderbuffer *wrb;
|
|
|
|
|
|
|
|
if (!mContext->GetConcreteObjectAndGLName("framebufferRenderbuffer: renderbuffer",
|
|
|
|
rbobj, &wrb, &renderbuffername, &isNull))
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferRenderbuffer: target", target);
|
|
|
|
|
|
|
|
if (rbtarget != LOCAL_GL_RENDERBUFFER)
|
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferRenderbuffer: renderbuffer target:", rbtarget);
|
|
|
|
|
|
|
|
switch (attachment) {
|
|
|
|
case LOCAL_GL_DEPTH_ATTACHMENT:
|
2010-12-06 03:34:35 -08:00
|
|
|
mDepthAttachment.SetRenderbuffer(wrb);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
case LOCAL_GL_STENCIL_ATTACHMENT:
|
2010-12-06 03:34:35 -08:00
|
|
|
mStencilAttachment.SetRenderbuffer(wrb);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
case LOCAL_GL_DEPTH_STENCIL_ATTACHMENT:
|
2010-12-06 03:34:35 -08:00
|
|
|
mDepthStencilAttachment.SetRenderbuffer(wrb);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// finish checking that the 'attachment' parameter is among the allowed values
|
2010-12-06 03:34:35 -08:00
|
|
|
if (attachment != LOCAL_GL_COLOR_ATTACHMENT0)
|
2010-11-05 12:57:58 -07:00
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferRenderbuffer: attachment", attachment);
|
2011-07-07 17:01:16 -07:00
|
|
|
|
2010-12-06 03:34:35 -08:00
|
|
|
mColorAttachment.SetRenderbuffer(wrb);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
mContext->MakeContextCurrent();
|
2011-01-05 13:08:53 -08:00
|
|
|
if (attachment == LOCAL_GL_DEPTH_STENCIL_ATTACHMENT) {
|
|
|
|
mContext->gl->fFramebufferRenderbuffer(target, LOCAL_GL_DEPTH_ATTACHMENT, rbtarget, renderbuffername);
|
|
|
|
mContext->gl->fFramebufferRenderbuffer(target, LOCAL_GL_STENCIL_ATTACHMENT, rbtarget, renderbuffername);
|
|
|
|
} else {
|
|
|
|
mContext->gl->fFramebufferRenderbuffer(target, attachment, rbtarget, renderbuffername);
|
|
|
|
}
|
2010-11-05 12:57:58 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult FramebufferTexture2D(WebGLenum target,
|
|
|
|
WebGLenum attachment,
|
|
|
|
WebGLenum textarget,
|
|
|
|
nsIWebGLTexture *tobj,
|
|
|
|
WebGLint level)
|
|
|
|
{
|
|
|
|
WebGLuint texturename;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isNull;
|
2010-11-05 12:57:58 -07:00
|
|
|
WebGLTexture *wtex;
|
|
|
|
|
|
|
|
if (!mContext->GetConcreteObjectAndGLName("framebufferTexture2D: texture",
|
|
|
|
tobj, &wtex, &texturename, &isNull))
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target != LOCAL_GL_FRAMEBUFFER)
|
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferTexture2D: target", target);
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
if (textarget != LOCAL_GL_TEXTURE_2D &&
|
2010-11-05 12:57:58 -07:00
|
|
|
(textarget < LOCAL_GL_TEXTURE_CUBE_MAP_POSITIVE_X ||
|
2011-07-07 17:01:16 -07:00
|
|
|
textarget > LOCAL_GL_TEXTURE_CUBE_MAP_NEGATIVE_Z))
|
2010-11-05 12:57:58 -07:00
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferTexture2D: invalid texture target", textarget);
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
if (level != 0)
|
2010-11-05 12:57:58 -07:00
|
|
|
return mContext->ErrorInvalidValue("framebufferTexture2D: level must be 0");
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
size_t face = WebGLTexture::FaceForTarget(textarget);
|
2010-11-05 12:57:58 -07:00
|
|
|
switch (attachment) {
|
|
|
|
case LOCAL_GL_DEPTH_ATTACHMENT:
|
2011-01-05 13:08:53 -08:00
|
|
|
mDepthAttachment.SetTexture(wtex, level, face);
|
2010-12-06 03:34:35 -08:00
|
|
|
break;
|
2010-11-05 12:57:58 -07:00
|
|
|
case LOCAL_GL_STENCIL_ATTACHMENT:
|
2011-01-05 13:08:53 -08:00
|
|
|
mStencilAttachment.SetTexture(wtex, level, face);
|
2010-12-06 03:34:35 -08:00
|
|
|
break;
|
2010-11-05 12:57:58 -07:00
|
|
|
case LOCAL_GL_DEPTH_STENCIL_ATTACHMENT:
|
2011-01-05 13:08:53 -08:00
|
|
|
mDepthStencilAttachment.SetTexture(wtex, level, face);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
default:
|
2010-12-06 03:34:35 -08:00
|
|
|
if (attachment != LOCAL_GL_COLOR_ATTACHMENT0)
|
2010-11-05 12:57:58 -07:00
|
|
|
return mContext->ErrorInvalidEnumInfo("framebufferTexture2D: attachment", attachment);
|
2010-11-16 20:33:03 -08:00
|
|
|
|
2011-01-05 13:08:53 -08:00
|
|
|
mColorAttachment.SetTexture(wtex, level, face);
|
2010-11-05 12:57:58 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
mContext->MakeContextCurrent();
|
2011-01-05 13:08:53 -08:00
|
|
|
if (attachment == LOCAL_GL_DEPTH_STENCIL_ATTACHMENT) {
|
|
|
|
mContext->gl->fFramebufferTexture2D(target, LOCAL_GL_DEPTH_ATTACHMENT, textarget, texturename, level);
|
|
|
|
mContext->gl->fFramebufferTexture2D(target, LOCAL_GL_STENCIL_ATTACHMENT, textarget, texturename, level);
|
|
|
|
} else {
|
|
|
|
mContext->gl->fFramebufferTexture2D(target, attachment, textarget, texturename, level);
|
|
|
|
}
|
2010-11-05 12:57:58 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool CheckAndInitializeRenderbuffers()
|
2010-11-05 12:57:58 -07:00
|
|
|
{
|
2010-12-06 03:34:35 -08:00
|
|
|
if (HasBadAttachments()) {
|
2010-11-05 12:57:58 -07:00
|
|
|
mContext->SynthesizeGLError(LOCAL_GL_INVALID_FRAMEBUFFER_OPERATION);
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2010-12-06 03:34:35 -08:00
|
|
|
if (mColorAttachment.HasUninitializedRenderbuffer() ||
|
|
|
|
mDepthAttachment.HasUninitializedRenderbuffer() ||
|
|
|
|
mStencilAttachment.HasUninitializedRenderbuffer() ||
|
|
|
|
mDepthStencilAttachment.HasUninitializedRenderbuffer())
|
2010-11-05 12:57:58 -07:00
|
|
|
{
|
|
|
|
InitializeRenderbuffers();
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool HasBadAttachments() const {
|
2010-12-06 03:34:35 -08:00
|
|
|
if (mColorAttachment.IsIncompatibleWithAttachmentPoint() ||
|
|
|
|
mDepthAttachment.IsIncompatibleWithAttachmentPoint() ||
|
|
|
|
mStencilAttachment.IsIncompatibleWithAttachmentPoint() ||
|
|
|
|
mDepthStencilAttachment.IsIncompatibleWithAttachmentPoint())
|
|
|
|
{
|
|
|
|
// some attachment is incompatible with its attachment point
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-12-06 03:34:35 -08:00
|
|
|
}
|
2011-07-07 17:01:16 -07:00
|
|
|
|
|
|
|
if (int(mDepthAttachment.IsNull()) +
|
|
|
|
int(mStencilAttachment.IsNull()) +
|
|
|
|
int(mDepthStencilAttachment.IsNull()) <= 1)
|
2010-12-06 03:34:35 -08:00
|
|
|
{
|
|
|
|
// has at least two among Depth, Stencil, DepthStencil
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-12-06 03:34:35 -08:00
|
|
|
}
|
2011-07-07 17:01:17 -07:00
|
|
|
|
|
|
|
if (!mDepthAttachment.IsNull() && !mDepthAttachment.HasSameDimensionsAs(mColorAttachment))
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-07-07 17:01:17 -07:00
|
|
|
if (!mStencilAttachment.IsNull() && !mStencilAttachment.HasSameDimensionsAs(mColorAttachment))
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-07-07 17:01:17 -07:00
|
|
|
if (!mDepthStencilAttachment.IsNull() && !mDepthStencilAttachment.HasSameDimensionsAs(mColorAttachment))
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2011-07-07 17:01:17 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
else return false;
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2011-01-05 13:08:53 -08:00
|
|
|
const WebGLFramebufferAttachment& ColorAttachment() const {
|
|
|
|
return mColorAttachment;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WebGLFramebufferAttachment& DepthAttachment() const {
|
|
|
|
return mDepthAttachment;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WebGLFramebufferAttachment& StencilAttachment() const {
|
|
|
|
return mStencilAttachment;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WebGLFramebufferAttachment& DepthStencilAttachment() const {
|
|
|
|
return mDepthStencilAttachment;
|
|
|
|
}
|
|
|
|
|
|
|
|
const WebGLFramebufferAttachment& GetAttachment(WebGLenum attachment) const {
|
|
|
|
if (attachment == LOCAL_GL_DEPTH_STENCIL_ATTACHMENT)
|
|
|
|
return mDepthStencilAttachment;
|
|
|
|
if (attachment == LOCAL_GL_DEPTH_ATTACHMENT)
|
|
|
|
return mDepthAttachment;
|
|
|
|
if (attachment == LOCAL_GL_STENCIL_ATTACHMENT)
|
|
|
|
return mStencilAttachment;
|
|
|
|
|
|
|
|
NS_ASSERTION(attachment == LOCAL_GL_COLOR_ATTACHMENT0, "bad attachment!");
|
2010-12-06 03:34:35 -08:00
|
|
|
return mColorAttachment;
|
2010-11-16 20:33:03 -08:00
|
|
|
}
|
|
|
|
|
2010-12-06 03:34:35 -08:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLFRAMEBUFFER
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
protected:
|
2010-11-05 12:57:58 -07:00
|
|
|
|
|
|
|
// protected because WebGLContext should only call InitializeRenderbuffers
|
|
|
|
void InitializeRenderbuffers()
|
|
|
|
{
|
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
|
|
|
|
if (mContext->gl->fCheckFramebufferStatus(LOCAL_GL_FRAMEBUFFER) != LOCAL_GL_FRAMEBUFFER_COMPLETE)
|
|
|
|
return;
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
PRUint32 mask = 0;
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mColorAttachment.HasUninitializedRenderbuffer())
|
|
|
|
mask |= LOCAL_GL_COLOR_BUFFER_BIT;
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mDepthAttachment.HasUninitializedRenderbuffer() ||
|
|
|
|
mDepthStencilAttachment.HasUninitializedRenderbuffer())
|
|
|
|
{
|
|
|
|
mask |= LOCAL_GL_DEPTH_BUFFER_BIT;
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mStencilAttachment.HasUninitializedRenderbuffer() ||
|
|
|
|
mDepthStencilAttachment.HasUninitializedRenderbuffer())
|
|
|
|
{
|
|
|
|
mask |= LOCAL_GL_STENCIL_BUFFER_BIT;
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
// the one useful line of code
|
|
|
|
mContext->ForceClearFramebufferWithDefaultValues(mask, nsIntRect(0,0,width(),height()));
|
2010-12-06 03:34:35 -08:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mColorAttachment.HasUninitializedRenderbuffer())
|
2011-10-17 07:59:28 -07:00
|
|
|
mColorAttachment.Renderbuffer()->SetInitialized(true);
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mDepthAttachment.HasUninitializedRenderbuffer())
|
2011-10-17 07:59:28 -07:00
|
|
|
mDepthAttachment.Renderbuffer()->SetInitialized(true);
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mStencilAttachment.HasUninitializedRenderbuffer())
|
2011-10-17 07:59:28 -07:00
|
|
|
mStencilAttachment.Renderbuffer()->SetInitialized(true);
|
2010-11-05 12:57:58 -07:00
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
if (mDepthStencilAttachment.HasUninitializedRenderbuffer())
|
2011-10-17 07:59:28 -07:00
|
|
|
mDepthStencilAttachment.Renderbuffer()->SetInitialized(true);
|
2010-11-05 12:57:58 -07:00
|
|
|
}
|
|
|
|
|
2010-05-28 15:52:39 -07:00
|
|
|
WebGLuint mName;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
|
|
|
bool mHasEverBeenBound;
|
2010-12-06 03:34:35 -08:00
|
|
|
|
2010-11-05 12:57:58 -07:00
|
|
|
// we only store pointers to attached renderbuffers, not to attached textures, because
|
|
|
|
// we will only need to initialize renderbuffers. Textures are already initialized.
|
2010-12-06 03:34:35 -08:00
|
|
|
WebGLFramebufferAttachment mColorAttachment,
|
|
|
|
mDepthAttachment,
|
|
|
|
mStencilAttachment,
|
|
|
|
mDepthStencilAttachment;
|
2009-09-02 17:47:49 -07:00
|
|
|
};
|
|
|
|
|
2010-06-01 23:09:19 -07:00
|
|
|
class WebGLUniformLocation :
|
|
|
|
public nsIWebGLUniformLocation,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<2>, // never saw a WebGLUniformLocation have more than 2 owners, and since these
|
|
|
|
// are small objects and there are many of them, it's worth saving some memory
|
|
|
|
// by using a small value such as 2 here.
|
2010-06-04 12:03:37 -07:00
|
|
|
public WebGLContextBoundObject
|
2010-06-01 23:09:19 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLUniformLocation(WebGLContext *context, WebGLProgram *program, GLint location) :
|
2010-06-08 14:25:27 -07:00
|
|
|
WebGLContextBoundObject(context), mProgram(program), mProgramGeneration(program->Generation()),
|
|
|
|
mLocation(location) { }
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
WebGLProgram *Program() const { return mProgram; }
|
|
|
|
GLint Location() const { return mLocation; }
|
2010-07-03 15:32:19 -07:00
|
|
|
PRUint32 ProgramGeneration() const { return mProgramGeneration; }
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
// needed for our generic helpers to check nsIxxx parameters, see GetConcreteObject.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() { return false; }
|
2010-06-01 23:09:19 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLUNIFORMLOCATION
|
|
|
|
protected:
|
|
|
|
WebGLObjectRefPtr<WebGLProgram> mProgram;
|
2010-07-03 15:32:19 -07:00
|
|
|
PRUint32 mProgramGeneration;
|
2010-06-01 23:09:19 -07:00
|
|
|
GLint mLocation;
|
|
|
|
};
|
|
|
|
|
2010-08-23 14:03:49 -07:00
|
|
|
class WebGLActiveInfo :
|
|
|
|
public nsIWebGLActiveInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WebGLActiveInfo(WebGLint size, WebGLenum type, const char *nameptr, PRUint32 namelength) :
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted(false),
|
2010-08-23 14:03:49 -07:00
|
|
|
mSize(size),
|
|
|
|
mType(type)
|
|
|
|
{
|
|
|
|
mName.AssignASCII(nameptr, namelength);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Delete() {
|
|
|
|
if (mDeleted)
|
|
|
|
return;
|
2011-10-17 07:59:28 -07:00
|
|
|
mDeleted = true;
|
2010-08-23 14:03:49 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool Deleted() { return mDeleted; }
|
2010-08-23 14:03:49 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLACTIVEINFO
|
|
|
|
protected:
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mDeleted;
|
2010-08-23 14:03:49 -07:00
|
|
|
WebGLint mSize;
|
|
|
|
WebGLenum mType;
|
|
|
|
nsString mName;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-05-20 12:53:53 -07:00
|
|
|
class WebGLExtension :
|
2011-05-20 12:53:53 -07:00
|
|
|
public nsIWebGLExtension,
|
|
|
|
public WebGLContextBoundObject,
|
2011-10-03 05:41:56 -07:00
|
|
|
public WebGLZeroingObject<2> // WebGLExtensions probably won't have many owers and
|
|
|
|
// can be very small objects. Also, we have a static array of those. So, saving some memory
|
|
|
|
// by using a small value such as 2 here.
|
2011-05-20 12:53:53 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
WebGLExtension(WebGLContext *baseContext)
|
2011-05-20 12:53:53 -07:00
|
|
|
: WebGLContextBoundObject(baseContext)
|
|
|
|
{}
|
2011-05-20 12:53:53 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIWEBGLEXTENSION
|
|
|
|
};
|
|
|
|
|
2010-06-04 12:03:37 -07:00
|
|
|
/**
|
|
|
|
** Template implementations
|
|
|
|
**/
|
|
|
|
|
2011-10-13 05:09:22 -07:00
|
|
|
/* Helper function taking a BaseInterfaceType pointer, casting it to
|
|
|
|
* ConcreteObjectType and performing some checks along the way.
|
2010-06-04 12:03:37 -07:00
|
|
|
*
|
|
|
|
* By default, null (respectively: deleted) aInterface pointers are
|
|
|
|
* not allowed, but if you pass a non-null isNull (respectively:
|
|
|
|
* isDeleted) pointer, then they become allowed and the value at
|
2010-07-16 07:30:32 -07:00
|
|
|
* isNull (respecively isDeleted) is overwritten.
|
|
|
|
*
|
|
|
|
* If generateErrors is true (which is the default) then upon errors,
|
|
|
|
* GL errors are synthesized and error messages are printed, prepended by
|
|
|
|
* the 'info' string.
|
2010-06-04 12:03:37 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
inline bool
|
2010-07-16 07:30:32 -07:00
|
|
|
WebGLContext::GetConcreteObject(const char *info,
|
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
ConcreteObjectType **aConcreteObject,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull,
|
|
|
|
bool *isDeleted,
|
|
|
|
bool generateErrors)
|
2010-06-04 12:03:37 -07:00
|
|
|
{
|
|
|
|
if (!aInterface) {
|
|
|
|
if (NS_LIKELY(isNull)) {
|
|
|
|
// non-null isNull means that the caller will accept a null arg
|
2011-10-17 07:59:28 -07:00
|
|
|
*isNull = true;
|
|
|
|
if(isDeleted) *isDeleted = false;
|
2010-06-04 12:03:37 -07:00
|
|
|
*aConcreteObject = 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-04 12:03:37 -07:00
|
|
|
} else {
|
2010-07-16 07:30:32 -07:00
|
|
|
if (generateErrors)
|
|
|
|
ErrorInvalidValue("%s: null object passed as argument", info);
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isNull)
|
2011-10-17 07:59:28 -07:00
|
|
|
*isNull = false;
|
2010-06-04 12:03:37 -07:00
|
|
|
|
2011-12-04 11:15:42 -08:00
|
|
|
// the key to why this static_cast is all we need to do (as opposed to the QueryInterface check we used to do)
|
|
|
|
// is that since bug 638328, WebGL interfaces are marked 'builtinclass' in the IDL
|
2011-10-13 05:09:22 -07:00
|
|
|
*aConcreteObject = static_cast<ConcreteObjectType*>(aInterface);
|
2010-06-04 12:03:37 -07:00
|
|
|
|
|
|
|
if (!(*aConcreteObject)->IsCompatibleWithContext(this)) {
|
|
|
|
// the object doesn't belong to this WebGLContext
|
2010-09-13 08:53:52 -07:00
|
|
|
if (generateErrors)
|
2010-07-16 07:30:32 -07:00
|
|
|
ErrorInvalidOperation("%s: object from different WebGL context (or older generation of this one) "
|
|
|
|
"passed as argument", info);
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((*aConcreteObject)->Deleted()) {
|
|
|
|
if (NS_LIKELY(isDeleted)) {
|
|
|
|
// non-null isDeleted means that the caller will accept a deleted arg
|
2011-10-17 07:59:28 -07:00
|
|
|
*isDeleted = true;
|
|
|
|
return true;
|
2010-06-04 12:03:37 -07:00
|
|
|
} else {
|
2010-07-16 07:30:32 -07:00
|
|
|
if (generateErrors)
|
2010-09-13 08:53:52 -07:00
|
|
|
ErrorInvalidValue("%s: deleted object passed as argument", info);
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isDeleted)
|
2011-10-17 07:59:28 -07:00
|
|
|
*isDeleted = false;
|
2010-06-04 12:03:37 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Same as GetConcreteObject, and in addition gets the GL object name.
|
|
|
|
* Null objects give the name 0.
|
|
|
|
*/
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
inline bool
|
2010-07-16 07:30:32 -07:00
|
|
|
WebGLContext::GetConcreteObjectAndGLName(const char *info,
|
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
ConcreteObjectType **aConcreteObject,
|
|
|
|
WebGLuint *aGLObjectName,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull,
|
|
|
|
bool *isDeleted)
|
2010-06-04 12:03:37 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool result = GetConcreteObject(info, aInterface, aConcreteObject, isNull, isDeleted);
|
2011-10-17 07:59:28 -07:00
|
|
|
if (result == false) return false;
|
2010-06-04 12:03:37 -07:00
|
|
|
*aGLObjectName = *aConcreteObject ? (*aConcreteObject)->GLName() : 0;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Same as GetConcreteObjectAndGLName when you don't need the concrete object pointer.
|
|
|
|
*/
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
inline bool
|
2010-07-16 07:30:32 -07:00
|
|
|
WebGLContext::GetGLName(const char *info,
|
|
|
|
BaseInterfaceType *aInterface,
|
2010-06-04 12:03:37 -07:00
|
|
|
WebGLuint *aGLObjectName,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull,
|
|
|
|
bool *isDeleted)
|
2010-06-04 12:03:37 -07:00
|
|
|
{
|
|
|
|
ConcreteObjectType *aConcreteObject;
|
2010-07-16 07:30:32 -07:00
|
|
|
return GetConcreteObjectAndGLName(info, aInterface, &aConcreteObject, aGLObjectName, isNull, isDeleted);
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Same as GetConcreteObject when you only want to check if the conversion succeeds.
|
|
|
|
*/
|
|
|
|
template<class ConcreteObjectType, class BaseInterfaceType>
|
2011-09-28 23:19:26 -07:00
|
|
|
inline bool
|
2010-07-16 07:30:32 -07:00
|
|
|
WebGLContext::CanGetConcreteObject(const char *info,
|
|
|
|
BaseInterfaceType *aInterface,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool *isNull,
|
|
|
|
bool *isDeleted)
|
2010-06-04 12:03:37 -07:00
|
|
|
{
|
|
|
|
ConcreteObjectType *aConcreteObject;
|
2011-10-17 07:59:28 -07:00
|
|
|
return GetConcreteObject(info, aInterface, &aConcreteObject, isNull, isDeleted, false);
|
2010-06-04 12:03:37 -07:00
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:12 -07:00
|
|
|
class WebGLMemoryReporter
|
|
|
|
{
|
|
|
|
WebGLMemoryReporter();
|
|
|
|
~WebGLMemoryReporter();
|
|
|
|
static WebGLMemoryReporter* sUniqueInstance;
|
|
|
|
|
|
|
|
// here we store plain pointers, not RefPtrs: we don't want the WebGLMemoryReporter unique instance to keep alive all
|
|
|
|
// WebGLContexts ever created.
|
|
|
|
typedef nsTArray<const WebGLContext*> ContextsArrayType;
|
|
|
|
ContextsArrayType mContexts;
|
|
|
|
|
2011-08-10 15:25:23 -07:00
|
|
|
nsCOMPtr<nsIMemoryReporter> mTextureMemoryUsageReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mTextureCountReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mBufferMemoryUsageReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mBufferCacheMemoryUsageReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mBufferCountReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mRenderbufferMemoryUsageReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mRenderbufferCountReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mShaderSourcesSizeReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mShaderTranslationLogsSizeReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mShaderCountReporter;
|
|
|
|
nsCOMPtr<nsIMemoryReporter> mContextCountReporter;
|
2011-07-07 17:01:12 -07:00
|
|
|
|
|
|
|
static WebGLMemoryReporter* UniqueInstance();
|
|
|
|
|
|
|
|
static ContextsArrayType & Contexts() { return UniqueInstance()->mContexts; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static void AddWebGLContext(const WebGLContext* c) {
|
|
|
|
Contexts().AppendElement(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void RemoveWebGLContext(const WebGLContext* c) {
|
|
|
|
ContextsArrayType & contexts = Contexts();
|
|
|
|
contexts.RemoveElement(c);
|
|
|
|
if (contexts.IsEmpty()) {
|
|
|
|
delete sUniqueInstance;
|
|
|
|
sUniqueInstance = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashOperator TextureMemoryUsageFunction(const PRUint32&, WebGLTexture *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
*result += aValue->MemoryUsage();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetTextureMemoryUsed() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 textureMemoryUsageForThisContext = 0;
|
|
|
|
contexts[i]->mMapTextures.EnumerateRead(TextureMemoryUsageFunction, &textureMemoryUsageForThisContext);
|
|
|
|
result += textureMemoryUsageForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetTextureCount() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
result += contexts[i]->mMapTextures.Count();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:15 -07:00
|
|
|
static PLDHashOperator BufferMemoryUsageFunction(const PRUint32&, WebGLBuffer *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
*result += aValue->ByteLength();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetBufferMemoryUsed() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 bufferMemoryUsageForThisContext = 0;
|
|
|
|
contexts[i]->mMapBuffers.EnumerateRead(BufferMemoryUsageFunction, &bufferMemoryUsageForThisContext);
|
|
|
|
result += bufferMemoryUsageForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
static PLDHashOperator BufferCacheMemoryUsageFunction(const PRUint32&, WebGLBuffer *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
// element array buffers are cached in the WebGL implementation. Other buffers aren't.
|
|
|
|
if (aValue->Target() == LOCAL_GL_ELEMENT_ARRAY_BUFFER)
|
|
|
|
*result += aValue->ByteLength();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetBufferCacheMemoryUsed() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 bufferCacheMemoryUsageForThisContext = 0;
|
|
|
|
contexts[i]->mMapBuffers.EnumerateRead(BufferCacheMemoryUsageFunction, &bufferCacheMemoryUsageForThisContext);
|
|
|
|
result += bufferCacheMemoryUsageForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:15 -07:00
|
|
|
static PRInt64 GetBufferCount() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
result += contexts[i]->mMapBuffers.Count();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
static PLDHashOperator RenderbufferMemoryUsageFunction(const PRUint32&, WebGLRenderbuffer *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
*result += aValue->MemoryUsage();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetRenderbufferMemoryUsed() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 bufferMemoryUsageForThisContext = 0;
|
|
|
|
contexts[i]->mMapRenderbuffers.EnumerateRead(RenderbufferMemoryUsageFunction, &bufferMemoryUsageForThisContext);
|
|
|
|
result += bufferMemoryUsageForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetRenderbufferCount() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
result += contexts[i]->mMapRenderbuffers.Count();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:16 -07:00
|
|
|
static PLDHashOperator ShaderSourceSizeFunction(const PRUint32&, WebGLShader *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
*result += aValue->Source().Length();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PLDHashOperator ShaderTranslationLogSizeFunction(const PRUint32&, WebGLShader *aValue, void *aData)
|
|
|
|
{
|
|
|
|
PRInt64 *result = (PRInt64*) aData;
|
|
|
|
*result += aValue->TranslationLog().Length();
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetShaderSourcesSize() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 shaderSourcesSizeForThisContext = 0;
|
|
|
|
contexts[i]->mMapShaders.EnumerateRead(ShaderSourceSizeFunction, &shaderSourcesSizeForThisContext);
|
|
|
|
result += shaderSourcesSizeForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetShaderTranslationLogsSize() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
PRInt64 shaderTranslationLogsSizeForThisContext = 0;
|
|
|
|
contexts[i]->mMapShaders.EnumerateRead(ShaderTranslationLogSizeFunction, &shaderTranslationLogsSizeForThisContext);
|
|
|
|
result += shaderTranslationLogsSizeForThisContext;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt64 GetShaderCount() {
|
|
|
|
const ContextsArrayType & contexts = Contexts();
|
|
|
|
PRInt64 result = 0;
|
|
|
|
for(size_t i = 0; i < contexts.Length(); ++i) {
|
|
|
|
result += contexts[i]->mMapShaders.Count();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:01:12 -07:00
|
|
|
static PRInt64 GetContextCount() {
|
|
|
|
return Contexts().Length();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-09-02 17:47:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|