vk-rs icon indicating copy to clipboard operation
vk-rs copied to clipboard

Collection of Rust libraries for the Vulkan API

Results 6 vk-rs issues
Sort by recently updated
recently updated
newest added

Is it possible, to push the versions 1.0.69 and 1.1.70 to the vk-api?

The parser fails, if the `vk.xml` has an enum without `value`-attribute. It can't parse the `alias`. Happens in `vk.xml v1.1.70` Edit: You never handle any alias-names Edit: To be honest,...

The macros like `vk_make_version!` use local types: ```rust macro_rules! vk_make_version { ($major: expr, $minor: expr, $patch: expr) => ((($major as uint32_t)

The macros `vk_version_major!` and `vk_version_minor!`. Expected: ```rust #[macro_export] macro_rules! vk_version_major { ($major: expr) => (($major as uint32_t) >> 22) } #[macro_export] macro_rules! vk_version_minor { ($minor: expr) => ((($minor as uint32_t)...

... instead of rolling in our own implementation for bitflags

Currently, the implementations appear to be manually generated.