Bug 1857841 - pt 3. Add a new page kind named "fresh" r=glandium
[gecko.git] / dom / webgpu / QuerySet.cpp
blob05f30f6cc84ec9d302c7101a6f667947db8a68e5
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #include "mozilla/dom/WebGPUBinding.h"
7 #include "QuerySet.h"
9 #include "Device.h"
11 namespace mozilla::webgpu {
13 QuerySet::~QuerySet() = default;
15 GPU_IMPL_CYCLE_COLLECTION(QuerySet, mParent)
16 GPU_IMPL_JS_WRAP(QuerySet)
18 void QuerySet::Destroy() {
19 // TODO
22 } // namespace mozilla::webgpu