vulkan icon indicating copy to clipboard operation
vulkan copied to clipboard

The ultimate Python binding for Vulkan API

Results 27 vulkan issues
Sort by recently updated
recently updated
newest added

In the following Vulkan documentation (https://vulkan.lunarg.com/doc/sdk/1.3.216.0/mac/getting_started.html) ,the following instance flag is referenced: "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR", which is not available to be imported in the python wrapper library. This is to solve the...

I get the following stack trace when attempting to run example_sdl2.py; ``` Traceback (most recent call last): File "./vulkan_test/vulkan/v2/example/example_sdl2.py", line 38, in appInfo = VkApplicationInfo( File "./vulkan_test/venv/lib/python3.10/site-packages/vulkan/_vulkan.py", line 3079, in...

According to Spec VkPipelineCacheHeaderVersionOne is present since version 1.0, but missing in PyVulkan. But it's enums are present. like 'VK_PIPELINE_CACHE_HEADER_VERSION_ONE' which is the header version.

The version currently available on PyPi doesn't work with Python > 3.8. There have been multiple changes and tags since the last one available on PyPi, some of which seem...

The example provided is working apparently.

The raytracing functions were added officially in 1.2.162.0 and I'd love to have a play with them, so I've set myself the task of generating the files for the latest...

I cannot render anything on screen because vkAcquireNextImageKHR keeps raising the exception VkSuboptimalKhr. I've read online that when this happens I can "ignore" it and continue on with the drawing...

Thank you for creating the Python Vulkan Bindings. I am just now trying to become more familiar with Vulkan on Python. For some reason I am having an issue running...