summaryrefslogtreecommitdiff
path: root/src/gpu/effects/fade_effect.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/effects/fade_effect.cc')
-rw-r--r--src/gpu/effects/fade_effect.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gpu/effects/fade_effect.cc b/src/gpu/effects/fade_effect.cc
index 3b942c0..4d7633c 100644
--- a/src/gpu/effects/fade_effect.cc
+++ b/src/gpu/effects/fade_effect.cc
@@ -47,15 +47,16 @@ FadeEffect::FadeEffect(WGPUDevice device, WGPUQueue queue,
)";
pipeline_ = create_post_process_pipeline(device, format, shader_code);
- uniforms_ = gpu_create_buffer(device, 16, WGPUBufferUsage_Uniform | WGPUBufferUsage_CopyDst);
+ uniforms_ = gpu_create_buffer(
+ device, 16, WGPUBufferUsage_Uniform | WGPUBufferUsage_CopyDst);
}
void FadeEffect::update_bind_group(WGPUTextureView input_view) {
pp_update_bind_group(device_, pipeline_, &bind_group_, input_view, uniforms_);
}
-void FadeEffect::render(WGPURenderPassEncoder pass, float time,
- float beat, float intensity, float aspect_ratio) {
+void FadeEffect::render(WGPURenderPassEncoder pass, float time, float beat,
+ float intensity, float aspect_ratio) {
(void)beat;
(void)intensity;
(void)aspect_ratio;