summaryrefslogtreecommitdiff
path: root/src/effects/heptagon_effect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/heptagon_effect.cc')
-rw-r--r--src/effects/heptagon_effect.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/effects/heptagon_effect.cc b/src/effects/heptagon_effect.cc
index fd83229..13d7aad 100644
--- a/src/effects/heptagon_effect.cc
+++ b/src/effects/heptagon_effect.cc
@@ -8,8 +8,9 @@
Heptagon::Heptagon(const GpuContext& ctx,
const std::vector<std::string>& inputs,
- const std::vector<std::string>& outputs)
- : Effect(ctx, inputs, outputs), pipeline_(nullptr), bind_group_(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);