summaryrefslogtreecommitdiff
path: root/src/gpu/pipeline_builder.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-03-05 22:55:56 +0100
committerskal <pascal.massimino@gmail.com>2026-03-05 22:55:56 +0100
commit34afbd6ca21d2b960573d787e6eae46fa86b200e (patch)
tree08450aeff4c67fb300428e705910265e6cd59943 /src/gpu/pipeline_builder.h
parent35c9ebb0a7ce0e726f631a2b04bb26098926cfab (diff)
style: run clang-format to adhere to coding style
Diffstat (limited to 'src/gpu/pipeline_builder.h')
-rw-r--r--src/gpu/pipeline_builder.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/pipeline_builder.h b/src/gpu/pipeline_builder.h
index 9fd76f9..24b4e8b 100644
--- a/src/gpu/pipeline_builder.h
+++ b/src/gpu/pipeline_builder.h
@@ -34,8 +34,8 @@ class RenderPipelineBuilder {
RenderPipelineBuilder& bind_group_layout(WGPUBindGroupLayout layout);
RenderPipelineBuilder& format(WGPUTextureFormat fmt);
RenderPipelineBuilder& blend_alpha();
- RenderPipelineBuilder& depth(
- WGPUTextureFormat depth_fmt = WGPUTextureFormat_Depth24Plus);
+ RenderPipelineBuilder&
+ depth(WGPUTextureFormat depth_fmt = WGPUTextureFormat_Depth24Plus);
RenderPipelineBuilder& cull_back();
WGPURenderPipeline build();
};