2014-02-11 22:37:06 +00: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/. */
|
|
|
|
|
|
|
|
#include "WebGLExtensions.h"
|
2014-11-14 04:03:50 +00:00
|
|
|
|
2014-02-11 22:37:06 +00:00
|
|
|
#include "mozilla/dom/WebGLRenderingContextBinding.h"
|
2014-11-14 04:03:50 +00:00
|
|
|
#include "WebGLContext.h"
|
2014-02-11 22:37:06 +00:00
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
namespace mozilla {
|
2014-02-11 22:37:06 +00:00
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
WebGLExtensionDebugShaders::WebGLExtensionDebugShaders(WebGLContext* webgl)
|
|
|
|
: WebGLExtensionBase(webgl)
|
2014-02-11 22:37:06 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
WebGLExtensionDebugShaders::~WebGLExtensionDebugShaders()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
// If no source has been defined, compileShader() has not been called, or the
|
|
|
|
// translation has failed for shader, an empty string is returned; otherwise,
|
|
|
|
// return the translated source.
|
2014-02-11 22:37:06 +00:00
|
|
|
void
|
|
|
|
WebGLExtensionDebugShaders::GetTranslatedShaderSource(WebGLShader* shader,
|
|
|
|
nsAString& retval)
|
|
|
|
{
|
2014-11-14 04:03:50 +00:00
|
|
|
retval.SetIsVoid(true);
|
|
|
|
|
2014-03-12 02:51:39 +00:00
|
|
|
if (mIsLost) {
|
2014-11-14 04:03:50 +00:00
|
|
|
mContext->ErrorInvalidOperation("%s: Extension is lost.",
|
|
|
|
"getTranslatedShaderSource");
|
|
|
|
return;
|
2014-03-12 02:51:39 +00:00
|
|
|
}
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
retval.SetIsVoid(false);
|
2014-02-11 22:37:06 +00:00
|
|
|
mContext->GetShaderTranslatedSource(shader, retval);
|
|
|
|
}
|
|
|
|
|
2015-06-01 14:17:00 +00:00
|
|
|
IMPL_WEBGL_EXTENSION_GOOP(WebGLExtensionDebugShaders, WEBGL_debug_shaders)
|
2014-11-14 04:03:50 +00:00
|
|
|
|
|
|
|
} // namespace mozilla
|