2018-08-07 21:20:34 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* 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 "VRGPUChild.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
static StaticRefPtr<VRGPUChild> sVRGPUChildSingleton;
|
|
|
|
|
|
|
|
/* static */ bool VRGPUChild::InitForGPUProcess(
|
|
|
|
Endpoint<PVRGPUChild>&& aEndpoint) {
|
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
MOZ_ASSERT(!sVRGPUChildSingleton);
|
|
|
|
|
|
|
|
RefPtr<VRGPUChild> child(new VRGPUChild());
|
|
|
|
if (!aEndpoint.Bind(child)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
sVRGPUChildSingleton = child;
|
2019-01-03 23:28:52 +03:00
|
|
|
|
|
|
|
RefPtr<Runnable> task =
|
|
|
|
NS_NewRunnableFunction("VRGPUChild::SendStartVRService", []() -> void {
|
|
|
|
VRGPUChild* vrGPUChild = VRGPUChild::Get();
|
|
|
|
vrGPUChild->SendStartVRService();
|
|
|
|
});
|
|
|
|
|
|
|
|
NS_DispatchToMainThread(task.forget());
|
|
|
|
|
2018-08-07 21:20:34 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool VRGPUChild::IsCreated() { return !!sVRGPUChildSingleton; }
|
|
|
|
|
|
|
|
/* static */ VRGPUChild* VRGPUChild::Get() {
|
|
|
|
MOZ_ASSERT(IsCreated(), "VRGPUChild haven't initialized yet.");
|
|
|
|
return sVRGPUChildSingleton;
|
|
|
|
}
|
|
|
|
|
2019-01-03 23:28:52 +03:00
|
|
|
/*static*/ void VRGPUChild::Shutdown() {
|
2018-08-07 21:20:34 +03:00
|
|
|
MOZ_ASSERT(NS_IsMainThread());
|
2019-01-12 01:51:48 +03:00
|
|
|
if (sVRGPUChildSingleton && !sVRGPUChildSingleton->IsClosed()) {
|
|
|
|
sVRGPUChildSingleton->Close();
|
|
|
|
}
|
2018-09-26 00:48:55 +03:00
|
|
|
sVRGPUChildSingleton = nullptr;
|
2018-08-07 21:20:34 +03:00
|
|
|
}
|
|
|
|
|
2019-02-23 01:04:00 +03:00
|
|
|
void VRGPUChild::ActorDestroy(ActorDestroyReason aWhy) {
|
|
|
|
VRManager* vm = VRManager::Get();
|
|
|
|
vm->Destroy();
|
|
|
|
mClosed = true;
|
|
|
|
}
|
2019-01-12 01:51:48 +03:00
|
|
|
|
|
|
|
bool VRGPUChild::IsClosed() { return mClosed; }
|
|
|
|
|
2018-08-07 21:20:34 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|