From b2d4d2cd06e28b012115bdafaa0bd015888d5452 Mon Sep 17 00:00:00 2001 From: skal Date: Sun, 1 Feb 2026 01:47:41 +0100 Subject: Chore: Apply clang-format to the codebase --- src/gpu/effects/post_process_helper.cc | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/gpu/effects/post_process_helper.cc') diff --git a/src/gpu/effects/post_process_helper.cc b/src/gpu/effects/post_process_helper.cc index 7c64844..db89d77 100644 --- a/src/gpu/effects/post_process_helper.cc +++ b/src/gpu/effects/post_process_helper.cc @@ -6,9 +6,9 @@ #include // Helper to create a standard post-processing pipeline -WGPURenderPipeline -create_post_process_pipeline(WGPUDevice device, WGPUTextureFormat format, - const char* shader_code) { +WGPURenderPipeline create_post_process_pipeline(WGPUDevice device, + WGPUTextureFormat format, + const char* shader_code) { WGPUShaderModuleDescriptor shader_desc = {}; WGPUShaderSourceWGSL wgsl_src = {}; wgsl_src.chain.sType = WGPUSType_ShaderSourceWGSL; @@ -63,9 +63,8 @@ create_post_process_pipeline(WGPUDevice device, WGPUTextureFormat format, // --- PostProcess Implementation Helper --- void pp_update_bind_group(WGPUDevice device, WGPURenderPipeline pipeline, - WGPUBindGroup* bind_group, - WGPUTextureView input_view, - GpuBuffer uniforms) { + WGPUBindGroup* bind_group, WGPUTextureView input_view, + GpuBuffer uniforms) { if (*bind_group) wgpuBindGroupRelease(*bind_group); WGPUBindGroupLayout bgl = wgpuRenderPipelineGetBindGroupLayout(pipeline, 0); -- cgit v1.2.3