summaryrefslogtreecommitdiff
path: root/src/effects/passthrough_effect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/passthrough_effect.cc')
-rw-r--r--src/effects/passthrough_effect.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/effects/passthrough_effect.cc b/src/effects/passthrough_effect.cc
index 7c1cf09..94da241 100644
--- a/src/effects/passthrough_effect.cc
+++ b/src/effects/passthrough_effect.cc
@@ -1,9 +1,9 @@
-// Passthrough effect v2 implementation
+// Passthrough effect implementation
#include "effects/passthrough_effect.h"
#include "util/fatal_error.h"
#include "gpu/post_process_helper.h"
-#include "gpu/shaders.h"
+#include "effects/shaders.h"
Passthrough::Passthrough(const GpuContext& ctx,
const std::vector<std::string>& inputs,
@@ -17,7 +17,7 @@ Passthrough::Passthrough(const GpuContext& ctx,
uniforms_buffer_.init(ctx_.device);
// Create pipeline (simple version without effect params)
pipeline_ = create_post_process_pipeline_simple(ctx_.device, WGPUTextureFormat_RGBA8Unorm,
- passthrough_v2_shader_wgsl);
+ passthrough_shader_wgsl);
// Create sampler
WGPUSamplerDescriptor sampler_desc = {};