summaryrefslogtreecommitdiffstats
path: root/gfx/gl/GLContext.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-05-20 12:10:50 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-05-20 12:10:50 +0200
commitfc001cc5bf6dfbb6504a4fa2ab95beda615f8d19 (patch)
tree29e15488fc346a9f0078dc37790d95c562f56cf8 /gfx/gl/GLContext.cpp
parent5aafe792b123389abe2ba108208bbc91435ea3b3 (diff)
downloadUXP-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.tar
UXP-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.tar.gz
UXP-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.tar.lz
UXP-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.tar.xz
UXP-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.zip
Remove gfxCrashReporterUtils.
Tag #20.
Diffstat (limited to 'gfx/gl/GLContext.cpp')
-rw-r--r--gfx/gl/GLContext.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/gfx/gl/GLContext.cpp b/gfx/gl/GLContext.cpp
index 23090ef98..33315413f 100644
--- a/gfx/gl/GLContext.cpp
+++ b/gfx/gl/GLContext.cpp
@@ -19,7 +19,6 @@
#include "GLReadTexImageHelper.h"
#include "GLScreenBuffer.h"
-#include "gfxCrashReporterUtils.h"
#include "gfxEnv.h"
#include "gfxUtils.h"
#include "GLContextProvider.h"
@@ -523,8 +522,6 @@ GLContext::InitWithPrefix(const char* prefix, bool trygl)
MOZ_RELEASE_ASSERT(!mSymbols.fBindFramebuffer,
"GFX: InitWithPrefix should only be called once.");
- ScopedGfxFeatureReporter reporter("GL Context");
-
if (!InitWithPrefixImpl(prefix, trygl)) {
// If initialization fails, zero the symbols to avoid hard-to-understand bugs.
mSymbols.Zero();
@@ -532,7 +529,6 @@ GLContext::InitWithPrefix(const char* prefix, bool trygl)
return false;
}
- reporter.SetSuccessful();
return true;
}