summaryrefslogtreecommitdiff
path: root/src/rendering/vulkan.zig
diff options
context:
space:
mode:
authorLorenzo Torres <torres@sideros.org>2025-03-24 19:40:35 +0100
committerLorenzo Torres <torres@sideros.org>2025-03-24 19:40:35 +0100
commit56559a93868f303bcd4c9e3d0a0891f084672386 (patch)
treed2dafc7303567685a60abefc6c92aec75c9c758e /src/rendering/vulkan.zig
parent7660bc09bc3787da09e8e4e83a03575e8078d330 (diff)
implemented glTF loading
Diffstat (limited to 'src/rendering/vulkan.zig')
-rw-r--r--src/rendering/vulkan.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rendering/vulkan.zig b/src/rendering/vulkan.zig
index 8e937dc..556a465 100644
--- a/src/rendering/vulkan.zig
+++ b/src/rendering/vulkan.zig
@@ -372,7 +372,7 @@ pub fn GraphicsPipeline(comptime n: usize) type {
.polygonMode = c.VK_POLYGON_MODE_FILL,
.lineWidth = 1.0,
.cullMode = c.VK_CULL_MODE_BACK_BIT,
- .frontFace = c.VK_FRONT_FACE_CLOCKWISE,
+ .frontFace = c.VK_FRONT_FACE_COUNTER_CLOCKWISE,
.depthBiasEnable = c.VK_FALSE,
};