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, 14 insertions, 0 deletions
diff --git a/src/effects/passthrough_effect.h b/src/effects/passthrough_effect.h
new file mode 100644
index 0000000..36f93f2
--- /dev/null
+++ b/src/effects/passthrough_effect.h
@@ -0,0 +1,14 @@
+// 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:
+};