Skip to content

Commit

Permalink
[Release] fix for custom rasterizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrael1 committed Oct 26, 2024
1 parent a0ad55c commit 789683e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

cmake_minimum_required(VERSION 3.22)

set(WISDOM_VERSION "0.3.11")
set(WISDOM_VERSION "0.3.12")
project("Wisdom" VERSION ${WISDOM_VERSION})

set(CMAKE_DEBUG_POSTFIX d)
Expand Down
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Version History
- 0.3.12

- Hotfix for Vulkan not creating the pipeline correctly

- 0.3.11

Expand Down
2 changes: 1 addition & 1 deletion wisdom/include/wisdom/vulkan/impl/vk_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ wis::ImplVKDevice::CreateGraphicsPipeline(const wis::VKGraphicsPipelineDesc* des
.pNext = nullptr,
.flags = 0,
.depthClampEnable = desc->rasterizer->depth_clip_enable,
.rasterizerDiscardEnable = true,
.rasterizerDiscardEnable = false,
.polygonMode = convert_vk(desc->rasterizer->fill_mode),
.cullMode = convert_vk(desc->rasterizer->cull_mode),
.frontFace = convert_vk(desc->rasterizer->front_face),
Expand Down

0 comments on commit 789683e

Please sign in to comment.