2012-12-03 17:10:23 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
#ifndef WEBGL_SHADER_H_
|
|
|
|
#define WEBGL_SHADER_H_
|
2012-12-03 17:10:23 +04:00
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
#include "GLDefs.h"
|
2012-12-03 17:10:23 +04:00
|
|
|
#include "mozilla/LinkedList.h"
|
2013-06-23 16:03:39 +04:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2014-11-14 07:03:50 +03:00
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "WebGLObjectModel.h"
|
2012-12-03 17:10:23 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
namespace webgl {
|
|
|
|
class ShaderValidator;
|
|
|
|
} // namespace webgl
|
2012-12-03 17:10:23 +04:00
|
|
|
|
|
|
|
class WebGLShader MOZ_FINAL
|
2013-08-29 19:39:17 +04:00
|
|
|
: public nsWrapperCache
|
2012-12-03 17:10:23 +04:00
|
|
|
, public WebGLRefCountedObject<WebGLShader>
|
|
|
|
, public LinkedListElement<WebGLShader>
|
|
|
|
, public WebGLContextBoundObject
|
|
|
|
{
|
|
|
|
friend class WebGLContext;
|
|
|
|
friend class WebGLProgram;
|
|
|
|
|
|
|
|
public:
|
2014-11-14 07:03:50 +03:00
|
|
|
WebGLShader(WebGLContext* webgl, GLenum type);
|
2012-12-03 17:10:23 +04:00
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
protected:
|
|
|
|
~WebGLShader();
|
2015-01-13 11:07:26 +03:00
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
public:
|
|
|
|
// GL funcs
|
|
|
|
void CompileShader();
|
|
|
|
JS::Value GetShaderParameter(GLenum pname) const;
|
|
|
|
void GetShaderInfoLog(nsAString* out) const;
|
|
|
|
void GetShaderSource(nsAString* out) const;
|
|
|
|
void GetShaderTranslatedSource(nsAString* out) const;
|
|
|
|
void ShaderSource(const nsAString& source);
|
|
|
|
|
|
|
|
// Util funcs
|
|
|
|
bool CanLinkTo(const WebGLShader* prev, nsCString* const out_log) const;
|
|
|
|
size_t CalcNumSamplerUniforms() const;
|
|
|
|
void BindAttribLocation(GLuint prog, const nsCString& userName, GLuint index) const;
|
|
|
|
bool FindAttribUserNameByMappedName(const nsACString& mappedName,
|
|
|
|
nsDependentCString* const out_userName) const;
|
|
|
|
bool FindUniformByMappedName(const nsACString& mappedName,
|
|
|
|
nsCString* const out_userName,
|
|
|
|
bool* const out_isArray) const;
|
|
|
|
|
|
|
|
bool IsCompiled() const {
|
|
|
|
return mTranslationSuccessful && mCompilationSuccessful;
|
2012-12-03 17:10:23 +04:00
|
|
|
}
|
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
// Other funcs
|
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf) const;
|
2012-12-03 17:10:23 +04:00
|
|
|
void Delete();
|
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
WebGLContext* GetParentObject() const { return Context(); }
|
2012-12-03 17:10:23 +04:00
|
|
|
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
virtual JSObject* WrapObject(JSContext* js, JS::Handle<JSObject*> aGivenProto) MOZ_OVERRIDE;
|
2012-12-03 17:10:23 +04:00
|
|
|
|
2013-08-29 19:39:17 +04:00
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(WebGLShader)
|
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(WebGLShader)
|
2012-12-03 17:10:23 +04:00
|
|
|
|
2015-01-16 02:40:39 +03:00
|
|
|
public:
|
|
|
|
const GLuint mGLName;
|
|
|
|
const GLenum mType;
|
2012-12-03 17:10:23 +04:00
|
|
|
protected:
|
2015-01-13 11:07:26 +03:00
|
|
|
nsString mSource;
|
2015-01-16 02:40:39 +03:00
|
|
|
nsCString mCleanSource;
|
|
|
|
|
|
|
|
UniquePtr<webgl::ShaderValidator> mValidator;
|
|
|
|
nsCString mValidationLog;
|
|
|
|
bool mTranslationSuccessful;
|
|
|
|
nsCString mTranslatedSource;
|
|
|
|
|
|
|
|
bool mCompilationSuccessful;
|
|
|
|
nsCString mCompilationLog;
|
2012-12-03 17:10:23 +04:00
|
|
|
};
|
2014-11-14 07:03:50 +03:00
|
|
|
|
2012-12-03 17:10:23 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-11-14 07:03:50 +03:00
|
|
|
#endif // WEBGL_SHADER_H_
|