diff options
Diffstat (limited to 'src/effects/passthrough_effect.cc')
| -rw-r--r-- | src/effects/passthrough_effect.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/passthrough_effect.cc b/src/effects/passthrough_effect.cc index 56e3711..7c1cf09 100644 --- a/src/effects/passthrough_effect.cc +++ b/src/effects/passthrough_effect.cc @@ -5,7 +5,7 @@ #include "gpu/post_process_helper.h" #include "gpu/shaders.h" -PassthroughEffect::PassthroughEffect(const GpuContext& ctx, +Passthrough::Passthrough(const GpuContext& ctx, const std::vector<std::string>& inputs, const std::vector<std::string>& outputs) : Effect(ctx, inputs, outputs), pipeline_(nullptr), bind_group_(nullptr), @@ -31,7 +31,7 @@ PassthroughEffect::PassthroughEffect(const GpuContext& ctx, sampler_ = wgpuDeviceCreateSampler(ctx_.device, &sampler_desc); } -void PassthroughEffect::render(WGPUCommandEncoder encoder, +void Passthrough::render(WGPUCommandEncoder encoder, const UniformsSequenceParams& params, NodeRegistry& nodes) { // Get input/output views |
