This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Description
I started to writing a renderer using your bindings. I have run into weird anomaly.
Error CS0029: Could not convert implicit Vulkan.DeviceQueueCreateInfo[] to uint
Snipped of the code:
var _queueInfo = new DeviceQueueCreateInfo { QueueFamilyIndex = _queueFamilyUsedIndex, QueuePriorities = new float[] { 1.0f } };
var _deviceInfo = new DeviceCreateInfo
{
EnabledExtensionNames = new string[] { "VK_KHR_swapchain" },
QueueCreateInfoCount = new DeviceQueueCreateInfo[] { _queueInfo }
};
It points me to this line:
QueueCreateInfoCount = new DeviceQueueCreateInfo[] { _queueInfo }