summaryrefslogtreecommitdiffstats
path: root/dom/canvas/WebGLExtensionDebugShaders.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-07-20 18:08:16 +0200
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-07-22 12:21:53 +0200
commitd3406cafff5e5c284f07419043eec4ae810db63a (patch)
tree1b3b6163368fec80db2de01f6648a0c881d15afa /dom/canvas/WebGLExtensionDebugShaders.cpp
parent0cd2ef552db767ada217c3f61fde65dc5cecc1ef (diff)
downloadUXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar
UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.gz
UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.lz
UXP-d3406cafff5e5c284f07419043eec4ae810db63a.tar.xz
UXP-d3406cafff5e5c284f07419043eec4ae810db63a.zip
Use WeakPtr for extension parent pointer.
Diffstat (limited to 'dom/canvas/WebGLExtensionDebugShaders.cpp')
-rw-r--r--dom/canvas/WebGLExtensionDebugShaders.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/dom/canvas/WebGLExtensionDebugShaders.cpp b/dom/canvas/WebGLExtensionDebugShaders.cpp
index 75880465e..8399aeb95 100644
--- a/dom/canvas/WebGLExtensionDebugShaders.cpp
+++ b/dom/canvas/WebGLExtensionDebugShaders.cpp
@@ -29,15 +29,10 @@ WebGLExtensionDebugShaders::GetTranslatedShaderSource(const WebGLShader& shader,
{
retval.SetIsVoid(true);
- if (mIsLost) {
- mContext->ErrorInvalidOperation("%s: Extension is lost.",
- "getTranslatedShaderSource");
+ if (mIsLost || !mContext) {
return;
}
- if (mContext->IsContextLost())
- return;
-
if (!mContext->ValidateObject("getShaderTranslatedSource: shader", shader))
return;