Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blade-graphics/src/vulkan/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ impl super::VulkanInstance {
let app_info = vk::ApplicationInfo::default()
.engine_name(c"blade")
.engine_version(1)
.api_version(vk::HEADER_VERSION_COMPLETE);
.api_version(driver_api_version);

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should take minimum of ours and theirs, not just theirs

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh yeah, changed it!

let str_pointers = layers
.iter()
.chain(enabled_instance_extensions.iter())
Expand Down
Loading