From be4978dc161080c9950acaf62ecf65d780e54731 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 31 May 2022 23:25:49 +0900 Subject: [PATCH] [vulkan] Update staging test for properties2 --- libs/video/renderer/vulkan/test/test-staging.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libs/video/renderer/vulkan/test/test-staging.c b/libs/video/renderer/vulkan/test/test-staging.c index d8c772222..93ae15ce4 100644 --- a/libs/video/renderer/vulkan/test/test-staging.c +++ b/libs/video/renderer/vulkan/test/test-staging.c @@ -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,