summaryrefslogtreecommitdiff
path: root/src/effects/placeholder_effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/placeholder_effect.h')
-rw-r--r--src/effects/placeholder_effect.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/effects/placeholder_effect.h b/src/effects/placeholder_effect.h
index f7917ab..72b156f 100644
--- a/src/effects/placeholder_effect.h
+++ b/src/effects/placeholder_effect.h
@@ -6,11 +6,11 @@
#include "gpu/effect.h"
#include "gpu/uniform_helper.h"
-class PlaceholderEffect : public Effect {
+class Placeholder : public Effect {
public:
- PlaceholderEffect(const GpuContext& ctx, const std::vector<std::string>& inputs,
- const std::vector<std::string>& outputs,
- const char* placeholder_name = "UnknownEffect");
+ Placeholder(const GpuContext& ctx, const std::vector<std::string>& inputs,
+ const std::vector<std::string>& outputs, float start_time,
+ float end_time, const char* placeholder_name = "UnknownEffect");
void render(WGPUCommandEncoder encoder, const UniformsSequenceParams& params,
NodeRegistry& nodes) override;
@@ -18,8 +18,5 @@ class PlaceholderEffect : public Effect {
private:
WGPURenderPipeline pipeline_;
WGPUBindGroup bind_group_;
- WGPUSampler sampler_;
- UniformBuffer<UniformsSequenceParams> uniforms_buffer_;
const char* name_;
};
-