2018-11-30 19:52:05 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-06-13 17:43:48 +00: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/. */
|
|
|
|
|
2021-03-04 21:25:46 +00:00
|
|
|
#ifndef GPU_QuerySet_H_
|
|
|
|
#define GPU_QuerySet_H_
|
2018-06-13 17:43:48 +00:00
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "ObjectModel.h"
|
|
|
|
|
2022-05-09 20:41:19 +00:00
|
|
|
namespace mozilla::webgpu {
|
2018-06-13 17:43:48 +00:00
|
|
|
|
|
|
|
class Device;
|
|
|
|
|
2021-03-04 21:25:46 +00:00
|
|
|
class QuerySet final : public ObjectBase, public ChildOf<Device> {
|
2018-06-13 17:43:48 +00:00
|
|
|
public:
|
2021-03-04 21:25:46 +00:00
|
|
|
GPU_DECL_CYCLE_COLLECTION(QuerySet)
|
|
|
|
GPU_DECL_JS_WRAP(QuerySet)
|
|
|
|
|
|
|
|
QuerySet() = delete;
|
|
|
|
void Destroy();
|
2018-06-13 17:43:48 +00:00
|
|
|
|
|
|
|
private:
|
2021-03-04 21:25:46 +00:00
|
|
|
virtual ~QuerySet();
|
2020-01-22 07:31:51 +00:00
|
|
|
void Cleanup() {}
|
2018-06-13 17:43:48 +00:00
|
|
|
};
|
|
|
|
|
2022-05-09 20:41:19 +00:00
|
|
|
} // namespace mozilla::webgpu
|
2018-06-13 17:43:48 +00:00
|
|
|
|
2021-03-04 21:25:46 +00:00
|
|
|
#endif // GPU_QuerySet_H_
|