vulkan: Don't cull vertices

We end up with the backside, when we scale(-1) and we still want it to
be visible, just flipped.
This commit is contained in:
Benjamin Otte 2023-05-12 18:17:44 +02:00
parent 8561ff37c4
commit ea9f0a3372

View File

@ -108,7 +108,7 @@ gsk_vulkan_pipeline_new (GType pipeline_type,
.depthClampEnable = VK_FALSE,
.rasterizerDiscardEnable = VK_FALSE,
.polygonMode = VK_POLYGON_MODE_FILL,
.cullMode = VK_CULL_MODE_BACK_BIT,
.cullMode = VK_CULL_MODE_NONE,
.frontFace = VK_FRONT_FACE_CLOCKWISE,
.lineWidth = 1.0f,
},