diff --git a/include/rendering/vk_pipeline.hpp b/include/rendering/vk_pipeline.hpp index 86929b72..ea0a3e10 100644 --- a/include/rendering/vk_pipeline.hpp +++ b/include/rendering/vk_pipeline.hpp @@ -43,7 +43,7 @@ public: // Rasterization PipelineBuilder& setRasterization(VkPolygonMode polygonMode, VkCullModeFlags cullMode, - VkFrontFace frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE); + VkFrontFace frontFace = VK_FRONT_FACE_CLOCKWISE); // Depth test/write PipelineBuilder& setDepthTest(bool enable, bool writeEnable, @@ -92,7 +92,7 @@ private: VkBool32 primitiveRestart_ = VK_FALSE; VkPolygonMode polygonMode_ = VK_POLYGON_MODE_FILL; VkCullModeFlags cullMode_ = VK_CULL_MODE_NONE; - VkFrontFace frontFace_ = VK_FRONT_FACE_COUNTER_CLOCKWISE; + VkFrontFace frontFace_ = VK_FRONT_FACE_CLOCKWISE; bool depthTestEnable_ = false; bool depthWriteEnable_ = false; VkCompareOp depthCompareOp_ = VK_COMPARE_OP_LESS;