vkk icon indicating copy to clipboard operation
vkk copied to clipboard

VK², Kotlin Wrapper for Vulkan: code expressiveness and safety meet graphic power

Results 2 vkk issues
Sort by recently updated
recently updated
newest added

Hi Folks, I believe there is a bug with the priorities float buffer allocation in vk.DeviceQueueCreateInfo. When doing the following the creation of a logical device fails with a SIGSEGV:...

Hi, when i run such code (Java 13, Archlinux, com.github.kotlin-graphics:vkk:-SNAPSHOT) ```kotlin val queueCreateInfos = ArrayList() graphicsQueueIndex = getQueueFamilyIndex(queueFamilyProperties, VkQueueFlag.GRAPHICS_BIT) queueCreateInfos += DeviceQueueCreateInfo( queueFamilyIndex = graphicsQueueIndex, queuePriority = 1.0F ) val...