Skip to content
Open
Changes from all commits
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
7 changes: 4 additions & 3 deletions en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,10 @@ void createInstance()
}
----

If the check was successful then the `vk::raii::Instance` constructor should not
ever throw a `vk::Result::eErrorLayerNotPresent` error, but you should run the
program to make sure.
If the check was successful, the `vk::raii::Instance` constructor should not
throw a `vk::Result::eErrorLayerNotPresent` error. However, the set of layers
available on the system can change between the check and the call - or between
separate runs of the program - so you should still run the program to make sure.

== Message callback

Expand Down
Loading