summaryrefslogtreecommitdiff
path: root/src/effects/passthrough_effect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/passthrough_effect.h')
-rw-r--r--src/effects/passthrough_effect.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/effects/passthrough_effect.h b/src/effects/passthrough_effect.h
deleted file mode 100644
index 36f93f2..0000000
--- a/src/effects/passthrough_effect.h
+++ /dev/null
@@ -1,14 +0,0 @@
-// This file is part of the 64k demo project.
-// It declares the PassthroughEffect.
-
-#pragma once
-
-#include "gpu/effect.h"
-
-class PassthroughEffect : public PostProcessEffect {
- public:
- PassthroughEffect(const GpuContext& ctx);
- void update_bind_group(WGPUTextureView input_view) override;
-
- private:
-};