Skip to content

Commit 3a96775

Browse files
committed
Use correct stencilStoreOp constant
1 parent 5092531 commit 3a96775

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/git/artdeell/artvk/Vk11RenderPassCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private long createRenderPass(
6161
att.loadOp(loadOp);
6262
att.storeOp(VK10.VK_ATTACHMENT_STORE_OP_STORE);
6363
att.stencilLoadOp(VK10.VK_ATTACHMENT_LOAD_OP_DONT_CARE);
64-
att.stencilStoreOp(VK10.VK_ATTACHMENT_LOAD_OP_DONT_CARE);
64+
att.stencilStoreOp(VK10.VK_ATTACHMENT_STORE_OP_DONT_CARE);
6565
att.initialLayout(VK10.VK_IMAGE_LAYOUT_GENERAL);
6666
att.finalLayout(VK10.VK_IMAGE_LAYOUT_GENERAL);
6767

0 commit comments

Comments
 (0)