summaryrefslogtreecommitdiff
path: root/engine/xe_pipeline.cpp
diff options
context:
space:
mode:
authorTyler Murphy <tylermurphy534@gmail.com>2022-09-21 16:49:43 -0400
committerTyler Murphy <tylermurphy534@gmail.com>2022-09-21 16:49:43 -0400
commitb1e71a70a489ee6042de216c93992c3f4d50984a (patch)
treed4d23be9f1dc102bf6a8a838a4fe736852325369 /engine/xe_pipeline.cpp
parentself define descriptors (diff)
downloadminecraftvulkan-b1e71a70a489ee6042de216c93992c3f4d50984a.tar.gz
minecraftvulkan-b1e71a70a489ee6042de216c93992c3f4d50984a.tar.bz2
minecraftvulkan-b1e71a70a489ee6042de216c93992c3f4d50984a.zip
add openal lib
Diffstat (limited to 'engine/xe_pipeline.cpp')
-rwxr-xr-xengine/xe_pipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/xe_pipeline.cpp b/engine/xe_pipeline.cpp
index c34d2a9..d06d09b 100755
--- a/engine/xe_pipeline.cpp
+++ b/engine/xe_pipeline.cpp
@@ -145,7 +145,7 @@ namespace xe {
configInfo.rasterizationInfo.rasterizerDiscardEnable = VK_FALSE;
configInfo.rasterizationInfo.polygonMode = VK_POLYGON_MODE_FILL;
configInfo.rasterizationInfo.lineWidth = 1.0f;
- configInfo.rasterizationInfo.cullMode = VK_CULL_MODE_BACK_BIT;
+ configInfo.rasterizationInfo.cullMode = VK_CULL_MODE_NONE;
configInfo.rasterizationInfo.frontFace = VK_FRONT_FACE_CLOCKWISE;
configInfo.rasterizationInfo.depthBiasEnable = VK_FALSE;
configInfo.rasterizationInfo.depthBiasConstantFactor = 0.0f;