зеркало из https://github.com/mozilla/gecko-dev.git
51 строка
1.5 KiB
C++
51 строка
1.5 KiB
C++
/* -*- 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_ComputePassEncoder_H_
|
|
#define GPU_ComputePassEncoder_H_
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
|
#include "mozilla/webgpu/WebGPUTypes.h"
|
|
#include "mozilla/webgpu/ffi/wgpu.h"
|
|
#include "ObjectModel.h"
|
|
#include "ProgrammablePassEncoder.h"
|
|
|
|
namespace mozilla {
|
|
namespace webgpu {
|
|
|
|
class Buffer;
|
|
class CommandEncoder;
|
|
class ComputePipeline;
|
|
|
|
class ComputePassEncoder final : public ProgrammablePassEncoder,
|
|
public ChildOf<CommandEncoder> {
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(
|
|
ComputePassEncoder, ProgrammablePassEncoder)
|
|
GPU_DECL_JS_WRAP(ComputePassEncoder)
|
|
|
|
ComputePassEncoder(CommandEncoder* const aParent,
|
|
const dom::GPUComputePassDescriptor& aDesc);
|
|
|
|
private:
|
|
virtual ~ComputePassEncoder();
|
|
void Cleanup() {}
|
|
|
|
ffi::WGPURawPass mRaw;
|
|
|
|
public:
|
|
void SetBindGroup(uint32_t aSlot, const BindGroup& aBindGroup,
|
|
const dom::Sequence<uint32_t>& aDynamicOffsets) override;
|
|
void SetPipeline(const ComputePipeline& aPipeline);
|
|
void Dispatch(uint32_t x, uint32_t y, uint32_t z);
|
|
void EndPass(ErrorResult& aRv);
|
|
};
|
|
|
|
} // namespace webgpu
|
|
} // namespace mozilla
|
|
|
|
#endif // GPU_ComputePassEncoder_H_
|