mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
[vulkan] Correct type of queue family
No idea why I had int32_t instead of uint32_t.
This commit is contained in:
parent
a1e15603a3
commit
aba057b827
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ typedef struct qfv_devfuncs_s {
|
||||||
typedef struct qfv_queue_s {
|
typedef struct qfv_queue_s {
|
||||||
struct qfv_device_s *device;
|
struct qfv_device_s *device;
|
||||||
|
|
||||||
int32_t queueFamily;
|
uint32_t queueFamily;
|
||||||
VkQueue queue;
|
VkQueue queue;
|
||||||
} qfv_queue_t;
|
} qfv_queue_t;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue