summaryrefslogtreecommitdiff
path: root/src/effects/passthrough_effect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/passthrough_effect.cc')
-rw-r--r--src/effects/passthrough_effect.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/effects/passthrough_effect.cc b/src/effects/passthrough_effect.cc
index be53846..392102d 100644
--- a/src/effects/passthrough_effect.cc
+++ b/src/effects/passthrough_effect.cc
@@ -7,9 +7,10 @@
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),
- sampler_(nullptr) {
+ const std::vector<std::string>& outputs,
+ float start_time, float end_time)
+ : Effect(ctx, inputs, outputs, start_time, end_time), pipeline_(nullptr),
+ bind_group_(nullptr), sampler_(nullptr) {
// Headless mode: skip GPU resource creation (compiled out in STRIP_ALL)
HEADLESS_RETURN_IF_NULL(ctx_.device);