diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/canvas/WebGLContextLossHandler.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/canvas/WebGLContextLossHandler.cpp')
-rw-r--r-- | dom/canvas/WebGLContextLossHandler.cpp | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/dom/canvas/WebGLContextLossHandler.cpp b/dom/canvas/WebGLContextLossHandler.cpp new file mode 100644 index 000000000..1f50896a5 --- /dev/null +++ b/dom/canvas/WebGLContextLossHandler.cpp @@ -0,0 +1,103 @@ +/* -*- 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 "WebGLContextLossHandler.h" + +#include "mozilla/DebugOnly.h" +#include "nsISupportsImpl.h" +#include "nsITimer.h" +#include "nsThreadUtils.h" +#include "WebGLContext.h" + +namespace mozilla { + +class WatchdogTimerEvent final : public nsITimerCallback +{ + const WeakPtr<WebGLContextLossHandler> mHandler; + +public: + NS_DECL_ISUPPORTS + + explicit WatchdogTimerEvent(WebGLContextLossHandler* handler) + : mHandler(handler) + { } + +private: + virtual ~WatchdogTimerEvent() { } + + NS_IMETHOD Notify(nsITimer*) override { + if (mHandler) { + mHandler->TimerCallback(); + } + return NS_OK; + } +}; + +NS_IMPL_ISUPPORTS(WatchdogTimerEvent, nsITimerCallback, nsISupports) + +//////////////////////////////////////// + +WebGLContextLossHandler::WebGLContextLossHandler(WebGLContext* webgl) + : mWebGL(webgl) + , mTimer(do_CreateInstance(NS_TIMER_CONTRACTID)) + , mTimerPending(false) + , mShouldRunTimerAgain(false) +#ifdef DEBUG + , mThread(NS_GetCurrentThread()) +#endif +{ + MOZ_ASSERT(mThread); +} + +WebGLContextLossHandler::~WebGLContextLossHandler() +{ + // NS_GetCurrentThread() returns null during shutdown. + const DebugOnly<nsIThread*> callingThread = NS_GetCurrentThread(); + MOZ_ASSERT(callingThread == mThread || !callingThread); +} + +//////////////////// + +void +WebGLContextLossHandler::RunTimer() +{ + MOZ_ASSERT(NS_GetCurrentThread() == mThread); + + // If the timer was already running, don't restart it here. Instead, + // wait until the previous call is done, then fire it one more time. + // This is also an optimization to prevent unnecessary + // cross-communication between threads. + if (mTimerPending) { + mShouldRunTimerAgain = true; + return; + } + + const RefPtr<WatchdogTimerEvent> event = new WatchdogTimerEvent(this); + const uint32_t kDelayMS = 1000; + mTimer->InitWithCallback(event, kDelayMS, nsITimer::TYPE_ONE_SHOT); + + mTimerPending = true; +} + +//////////////////// + +void +WebGLContextLossHandler::TimerCallback() +{ + MOZ_ASSERT(NS_GetCurrentThread() == mThread); + + mTimerPending = false; + + const bool runOnceMore = mShouldRunTimerAgain; + mShouldRunTimerAgain = false; + + mWebGL->UpdateContextLossStatus(); + + if (runOnceMore && !mTimerPending) { + RunTimer(); + } +} + +} // namespace mozilla |