void CreateCommandPool()
        {
            var info = new VkCommandPoolCreateInfo();

            info.sType            = CSGL.Vulkan.VkStructureType.CommandPoolCreateInfo;
            info.queueFamilyIndex = graphicsIndex;

            var result = VK.CreateCommandPool(device, ref info, alloc, out commandPool);
        }