diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-20 12:10:50 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-20 12:10:50 +0200 |
commit | fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19 (patch) | |
tree | 29e15488fc346a9f0078dc37790d95c562f56cf8 /gfx/gl/GLContext.cpp | |
parent | 5aafe792b123389abe2ba108208bbc91435ea3b3 (diff) | |
download | uxp-fc001cc5bf6dfbb6504a4fa2ab95beda615f8d19.tar.gz |
Remove gfxCrashReporterUtils.
Tag #20.
Diffstat (limited to 'gfx/gl/GLContext.cpp')
-rw-r--r-- | gfx/gl/GLContext.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gfx/gl/GLContext.cpp b/gfx/gl/GLContext.cpp index 23090ef989..33315413f2 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; } |