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
Ash currently represents Vulkan API versions as u32, and has a bunch of bare functions and constants to deal with them. I think it would be more idiomatic if these were represented as a newtype wrapper Version. Then the constants can be associated constants, and the functions can be methods. I realise that Vulkan itself represents these as uint32_t, so recognising which values are versions may be more difficult.
The text was updated successfully, but these errors were encountered:
Ash currently represents Vulkan API versions as
u32
, and has a bunch of bare functions and constants to deal with them. I think it would be more idiomatic if these were represented as a newtype wrapperVersion
. Then the constants can be associated constants, and the functions can be methods. I realise that Vulkan itself represents these asuint32_t
, so recognising which values are versions may be more difficult.The text was updated successfully, but these errors were encountered: