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_RenderBundle_H_
|
|
|
|
#define GPU_RenderBundle_H_
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "ObjectModel.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace webgpu {
|
|
|
|
|
|
|
|
class Device;
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
class RenderBundle final : public ObjectBase, public ChildOf<Device> {
|
2018-06-13 20:43:48 +03:00
|
|
|
public:
|
2019-10-02 19:46:03 +03:00
|
|
|
GPU_DECL_CYCLE_COLLECTION(RenderBundle)
|
|
|
|
GPU_DECL_JS_WRAP(RenderBundle)
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
private:
|
2019-10-02 19:46:03 +03:00
|
|
|
RenderBundle() = delete;
|
|
|
|
virtual ~RenderBundle();
|
2020-01-22 10:31:51 +03:00
|
|
|
void Cleanup() {}
|
2018-06-13 20:43:48 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace webgpu
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#endif // GPU_RenderBundle_H_
|