summaryrefslogtreecommitdiff
path: root/src/effects/particles_effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/particles_effect.h')
-rw-r--r--src/effects/particles_effect.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/effects/particles_effect.h b/src/effects/particles_effect.h
deleted file mode 100644
index a69039f..0000000
--- a/src/effects/particles_effect.h
+++ /dev/null
@@ -1,21 +0,0 @@
-// This file is part of the 64k demo project.
-// It declares the ParticlesEffect.
-
-#pragma once
-
-#include "effects/particle_defs.h"
-#include "gpu/effect.h"
-
-class ParticlesEffect : public Effect {
- public:
- ParticlesEffect(const GpuContext& ctx);
- void compute(WGPUCommandEncoder encoder,
- const CommonPostProcessUniforms& uniforms) override;
- void render(WGPURenderPassEncoder pass,
- const CommonPostProcessUniforms& uniforms) override;
-
- private:
- ComputePass compute_pass_;
- RenderPass render_pass_;
- GpuBuffer particles_buffer_;
-};