summaryrefslogtreecommitdiff
path: root/src/effects/vignette_effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/vignette_effect.h')
-rw-r--r--src/effects/vignette_effect.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/effects/vignette_effect.h b/src/effects/vignette_effect.h
deleted file mode 100644
index f891d14..0000000
--- a/src/effects/vignette_effect.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// This file is part of the 64k demo project.
-// It declares the VignetteEffect.
-
-#pragma once
-
-#include "gpu/effect.h"
-#include "gpu/uniform_helper.h"
-
-// Parameters for VignetteEffect
-struct VignetteParams {
- float radius = 0.5f; // Radius of the clear center
- float softness = 0.5f; // Softness of the vignette edge
-};
-
-class VignetteEffect : public PostProcessEffect {
- public:
- VignetteEffect(const GpuContext& ctx);
- VignetteEffect(const GpuContext& ctx, const VignetteParams& params);
- void render(WGPURenderPassEncoder pass,
- const CommonPostProcessUniforms& uniforms) override;
- void update_bind_group(WGPUTextureView input_view) override;
-
- private:
- VignetteParams params_;
- UniformBuffer<VignetteParams> params_buffer_;
-};