2012-10-04 13:35:54 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2012-12-03 05:10:23 -08:00
|
|
|
#include "WebGLShader.h"
|
2012-10-04 13:35:54 -07:00
|
|
|
#include "WebGLContext.h"
|
|
|
|
#include "mozilla/dom/WebGLRenderingContextBinding.h"
|
2013-01-31 15:11:49 -08:00
|
|
|
#include "nsContentUtils.h"
|
2012-10-04 13:35:54 -07:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
|
|
|
JSObject*
|
2013-04-25 09:29:54 -07:00
|
|
|
WebGLShader::WrapObject(JSContext *cx, JS::Handle<JSObject*> scope) {
|
2013-03-11 16:03:47 -07:00
|
|
|
return dom::WebGLShaderBinding::Wrap(cx, scope, this);
|
2012-10-04 13:35:54 -07:00
|
|
|
}
|
|
|
|
|
2012-12-03 05:10:23 -08:00
|
|
|
WebGLShader::WebGLShader(WebGLContext *context, WebGLenum stype)
|
|
|
|
: WebGLContextBoundObject(context)
|
|
|
|
, mType(stype)
|
|
|
|
, mNeedsTranslation(true)
|
|
|
|
, mAttribMaxNameLength(0)
|
|
|
|
, mCompileStatus(false)
|
|
|
|
{
|
|
|
|
SetIsDOMBinding();
|
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
mGLName = mContext->gl->fCreateShader(mType);
|
|
|
|
mContext->mShaders.insertBack(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLShader::Delete() {
|
|
|
|
mSource.Truncate();
|
|
|
|
mTranslationLog.Truncate();
|
|
|
|
mContext->MakeContextCurrent();
|
|
|
|
mContext->gl->fDeleteShader(mGLName);
|
|
|
|
LinkedListElement<WebGLShader>::removeFrom(mContext->mShaders);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t
|
|
|
|
WebGLShader::SizeOfIncludingThis(nsMallocSizeOfFun aMallocSizeOf) const {
|
|
|
|
return aMallocSizeOf(this) +
|
|
|
|
mSource.SizeOfExcludingThisIfUnshared(aMallocSizeOf) +
|
|
|
|
mTranslationLog.SizeOfExcludingThisIfUnshared(aMallocSizeOf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
WebGLShader::SetTranslationSuccess() {
|
|
|
|
mTranslationLog.SetIsVoid(true);
|
|
|
|
mNeedsTranslation = false;
|
|
|
|
}
|
|
|
|
|
2012-10-04 13:35:54 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(WebGLShader)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(WebGLShader)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(WebGLShader)
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(WebGLShader)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_END
|