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"
|
2020-04-05 06:50:02 +03:00
|
|
|
|
2019-06-29 00:19:54 +03:00
|
|
|
#include "mozilla/layers/CompositorThread.h"
|
2020-04-05 06:50:02 +03:00
|
|
|
#include "VRManager.h"
|
2018-08-07 21:20:34 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
|
|
|
|
static StaticRefPtr<VRGPUChild> sVRGPUChildSingleton;
|
|
|
|
|
2019-02-26 01:07:19 +03:00
|
|
|
/* static */
|
|
|
|
bool VRGPUChild::InitForGPUProcess(Endpoint<PVRGPUChild>&& aEndpoint) {
|
2018-08-07 21:20:34 +03:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:07:19 +03:00
|
|
|
/* static */
|
|
|
|
bool VRGPUChild::IsCreated() { return !!sVRGPUChildSingleton; }
|
2018-08-07 21:20:34 +03:00
|
|
|
|
2019-02-26 01:07:19 +03:00
|
|
|
/* static */
|
|
|
|
VRGPUChild* VRGPUChild::Get() {
|
2018-08-07 21:20:34 +03:00
|
|
|
MOZ_ASSERT(IsCreated(), "VRGPUChild haven't initialized yet.");
|
|
|
|
return sVRGPUChildSingleton;
|
|
|
|
}
|
|
|
|
|
2019-02-26 01:07:19 +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();
|
2019-06-29 00:19:54 +03:00
|
|
|
mozilla::layers::CompositorThreadHolder::Loop()->PostTask(
|
2019-04-04 21:35:02 +03:00
|
|
|
NewRunnableMethod("VRGPUChild::ActorDestroy", vm, &VRManager::Shutdown));
|
|
|
|
|
2019-02-23 01:04:00 +03:00
|
|
|
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
|