Skip to content
Merged
3 changes: 3 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ The Vulkan Guide can be built as a single page using `asciidoctor guide.adoc`

= Using Vulkan

== xref:{chapters}vulkan_profiles.adoc[Vulkan Profiles]

== xref:{chapters}loader.adoc[Loader]


== xref:{chapters}layers.adoc[Layers]

== xref:{chapters}querying_extensions_features.adoc[Querying Properties, Extensions, Features, Limits, and Formats]
Expand Down
1 change: 1 addition & 0 deletions antora/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
** xref:{chapters}platforms.adoc[]
** xref:{chapters}checking_for_support.adoc[]
** xref:{chapters}versions.adoc[]
** xref:{chapters}vulkan_profiles.adoc[]
** xref:{chapters}vulkan_release_summary.adoc[]
** xref:{chapters}what_is_spirv.adoc[]
** xref:{chapters}portability_initiative.adoc[]
Expand Down
2 changes: 1 addition & 1 deletion chapters/checking_for_support.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ View the link:https://vulkan.lunarg.com/doc/sdk/latest/windows/via.html[SDK docu

A simple way to check for Vulkan support cross platform is to create a simple "`Hello World`" Vulkan application. The `vkCreateInstance` function is used to create a Vulkan Instance and is also the shortest way to write a valid Vulkan application.

The Vulkan SDK provides a minimal link:https://vulkan.lunarg.com/doc/view/latest/windows/tutorial/html/01-init_instance.html[vkCreateInstance] example `01-init_instance.cpp` that can be used.
The Vulkan SDK provides a minimal link:https://docs.vulkan.org/tutorial/latest/03_Drawing_a_triangle/00_Setup/01_Instance.html[vkCreateInstance] example `01-init_instance.cpp` that can be used.
Loading