diff options
Diffstat (limited to 'src/rendering/vulkan.zig')
-rw-r--r-- | src/rendering/vulkan.zig | 2 |
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, }; |