/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */ #ifndef GPU_Queue_H_ #define GPU_Queue_H_ #include "nsWrapperCache.h" #include "ObjectModel.h" namespace mozilla { namespace dom { template class Sequence; } namespace webgpu { class CommandBuffer; class Device; class Fence; class Queue final : public ObjectBase, public ChildOf { public: GPU_DECL_CYCLE_COLLECTION(Queue) GPU_DECL_JS_WRAP(Queue) Queue(Device* const aParent, WebGPUChild* aBridge, RawId aId); void Submit( const dom::Sequence>& aCommandBuffers); private: Queue() = delete; virtual ~Queue(); void Cleanup() {} RefPtr mBridge; const RawId mId; public: }; } // namespace webgpu } // namespace mozilla #endif // GPU_Queue_H_