From aba057b827077f400d3dc6c6baf7e88915c521ff Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 27 Mar 2023 23:50:57 +0900 Subject: [PATCH] [vulkan] Correct type of queue family No idea why I had int32_t instead of uint32_t. --- include/QF/Vulkan/device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/QF/Vulkan/device.h b/include/QF/Vulkan/device.h index f93a8a5c2..8d10971dc 100644 --- a/include/QF/Vulkan/device.h +++ b/include/QF/Vulkan/device.h @@ -12,7 +12,7 @@ typedef struct qfv_devfuncs_s { typedef struct qfv_queue_s { struct qfv_device_s *device; - int32_t queueFamily; + uint32_t queueFamily; VkQueue queue; } qfv_queue_t;