From 0e8057fa805563262e7165cc082778557b9dfdc4 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 22 Dec 2025 12:31:01 +1100 Subject: [PATCH] fix param order --- vulkan.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkan.d b/vulkan.d index cedabe1..33a8bbd 100644 --- a/vulkan.d +++ b/vulkan.d @@ -1548,7 +1548,7 @@ BindPipeline(Vulkan* vk, VkCommandBuffer cmd, PipelineHandles* pipeline) } void -SetScissor(Vulkan* vk, u32 x, u32 y, u32 h, u32 w) +SetScissor(Vulkan* vk, u32 x, u32 y, u32 w, u32 h) { VkRect2D scissor = { offset: { x: x, y: y },