2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-06-13 20:43:48 +03:00
|
|
|
/* 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/. */
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#ifndef GPU_INSTANCE_H_
|
|
|
|
#define GPU_INSTANCE_H_
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "ObjectModel.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2020-11-16 22:57:04 +03:00
|
|
|
class ErrorResult;
|
2018-06-13 20:43:48 +03:00
|
|
|
namespace dom {
|
2019-10-02 19:46:03 +03:00
|
|
|
class Promise;
|
|
|
|
struct GPURequestAdapterOptions;
|
2018-06-13 20:43:48 +03:00
|
|
|
} // namespace dom
|
|
|
|
|
|
|
|
namespace webgpu {
|
|
|
|
class Adapter;
|
2019-11-14 07:59:56 +03:00
|
|
|
class GPUAdapter;
|
|
|
|
class WebGPUChild;
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
class Instance final : public nsWrapperCache {
|
|
|
|
public:
|
2019-10-02 19:46:03 +03:00
|
|
|
GPU_DECL_CYCLE_COLLECTION(Instance)
|
|
|
|
GPU_DECL_JS_WRAP(Instance)
|
2018-06-13 20:43:48 +03:00
|
|
|
|
2020-01-24 19:27:09 +03:00
|
|
|
nsIGlobalObject* GetParentObject() const { return mOwner; }
|
|
|
|
|
2019-11-14 07:59:56 +03:00
|
|
|
static already_AddRefed<Instance> Create(nsIGlobalObject* aOwner);
|
2018-06-13 20:43:48 +03:00
|
|
|
|
2019-11-14 07:59:56 +03:00
|
|
|
already_AddRefed<dom::Promise> RequestAdapter(
|
|
|
|
const dom::GPURequestAdapterOptions& aOptions, ErrorResult& aRv);
|
2018-06-13 20:43:48 +03:00
|
|
|
|
2020-04-07 01:29:18 +03:00
|
|
|
RefPtr<WebGPUChild> mBridge;
|
2020-01-24 19:27:09 +03:00
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
private:
|
2019-11-14 07:59:56 +03:00
|
|
|
explicit Instance(nsIGlobalObject* aOwner, WebGPUChild* aBridge);
|
2018-06-13 20:43:48 +03:00
|
|
|
virtual ~Instance();
|
2020-01-22 10:31:51 +03:00
|
|
|
void Cleanup();
|
2018-06-13 20:43:48 +03:00
|
|
|
|
2019-11-14 07:59:56 +03:00
|
|
|
nsCOMPtr<nsIGlobalObject> mOwner;
|
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
public:
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace webgpu
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#endif // GPU_INSTANCE_H_
|