You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the current behaviour?
Currently VkNonDispatchableHandle is defined as being a sixty-four bit integer
Please provide the steps to reproduce and if possible a minimal demo of the problem
Look at vulkan.nim, line 42
What is the expected behaviour?
According to vulkan_core.h, lines 53-59 it should be an unsigned sixty-four bit integer when pointers aren't being used for handles:
Please tell us about your environment
Not relevant
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, docs.gl, documentation etc)
The vulkan_core.h header makes this pretty clear that it should be a uint64 and not a int64
The text was updated successfully, but these errors were encountered:
What is the current behaviour?
Currently
VkNonDispatchableHandle
is defined as being a sixty-four bit integerPlease provide the steps to reproduce and if possible a minimal demo of the problem
Look at vulkan.nim, line 42
What is the expected behaviour?
According to
vulkan_core.h
, lines 53-59 it should be an unsigned sixty-four bit integer when pointers aren't being used for handles:Please tell us about your environment
Not relevant
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, docs.gl, documentation etc)
The vulkan_core.h header makes this pretty clear that it should be a
uint64
and not aint64
The text was updated successfully, but these errors were encountered: