Skip to content

Commit 20f2b5e

Browse files
committed
Fix vk::PipelineRasterizationStateCreateInfo::frontFace to vk::FrontFace::eCounterClockwise
1 parent 8797428 commit 20f2b5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

attachments/23_descriptor_sets.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ class HelloTriangleApplication
442442
.rasterizerDiscardEnable = vk::False,
443443
.polygonMode = vk::PolygonMode::eFill,
444444
.cullMode = vk::CullModeFlagBits::eBack,
445-
.frontFace = vk::FrontFace::eClockwise,
445+
.frontFace = vk::FrontFace::eCounterClockwise,
446446
.depthBiasEnable = vk::False,
447447
.lineWidth = 1.0f};
448448

0 commit comments

Comments
 (0)