mirror of https://github.com/xemu-project/xemu.git
nv2a/vk: Change display renderpass loadOp to don't care
This commit is contained in:
parent
a562007f84
commit
5119e3a365
|
@ -141,7 +141,7 @@ static void create_render_pass(PGRAPHState *pg)
|
|||
attachment = (VkAttachmentDescription){
|
||||
.format = VK_FORMAT_R8G8B8A8_UNORM,
|
||||
.samples = VK_SAMPLE_COUNT_1_BIT,
|
||||
.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD,
|
||||
.loadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
||||
.storeOp = VK_ATTACHMENT_STORE_OP_STORE,
|
||||
.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE,
|
||||
.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE,
|
||||
|
|
Loading…
Reference in New Issue