diff options
Diffstat (limited to 'src/effects/particles_effect.cc')
| -rw-r--r-- | src/effects/particles_effect.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/effects/particles_effect.cc b/src/effects/particles_effect.cc index 35e9919..22e41e9 100644 --- a/src/effects/particles_effect.cc +++ b/src/effects/particles_effect.cc @@ -9,8 +9,9 @@ Particles::Particles(const GpuContext& ctx, const std::vector<std::string>& inputs, - const std::vector<std::string>& outputs) - : Effect(ctx, inputs, outputs) { + const std::vector<std::string>& outputs, float start_time, + float end_time) + : Effect(ctx, inputs, outputs, start_time, end_time) { // Headless mode: skip GPU resource creation (compiled out in STRIP_ALL) HEADLESS_RETURN_IF_NULL(ctx_.device); |
