Skip to content

Commit

Permalink
Fix accidental doulbe negation instance.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciel-MC authored and KyleMayes committed Aug 22, 2023
1 parent 63fa050 commit 26de125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/book/src/setup/instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ let info = vk::InstanceCreateInfo::builder()
.flags(flags);
```

This code enables `KHR_PORTABILITY_ENUMERATION_EXTENSION` if your application is being compiled for a platform that lacks a non-conformant Vulkan implementation (just checking for macOS here) and the Vulkan version meets or exceeds the minimum version we just defined.
This code enables `KHR_PORTABILITY_ENUMERATION_EXTENSION` if your application is being compiled for a platform that lacks a conformant Vulkan implementation (just checking for macOS here) and the Vulkan version meets or exceeds the minimum version we just defined.

This code also enables `KHR_GET_PHYSICAL_DEVICE_PROPERTIES2_EXTENSION` under the same conditions. This extension is needed to enable the `KHR_PORTABILITY_SUBSET_EXTENSION` device extension which will be added later in the tutorial when we set up a logical device.

Expand Down

0 comments on commit 26de125

Please sign in to comment.