[vulkan] Update staging test for properties2

This commit is contained in:
Bill Currie 2022-05-31 23:25:49 +09:00
parent 035595dd7e
commit be4978dc16

View file

@ -155,11 +155,14 @@ qfv_devfuncs_t dfuncs = {
.vkQueueSubmit = vkQueueSubmit,
};
qfv_physdev_t physDev = {
.properties = {
.limits = {
.nonCoherentAtomSize = 256,
.properties2 = {
.properties = {
.limits = {
.nonCoherentAtomSize = 256,
},
},
},
.properties = &physDev.properties2.properties,
};
qfv_device_t device = {
.physDev = &physDev,