From 84bf62b219a4616b95ba41976e43ff62febf23d0 Mon Sep 17 00:00:00 2001 From: hoj-senna <53797493+hoj-senna@users.noreply.github.com> Date: Wed, 5 Jan 2022 18:52:30 +0100 Subject: [PATCH] Update README.md Change Entry::new to Entry::linked in accordance with the changelog for ash 0.35.0. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1ad40d9..479b641 100644 --- a/README.md +++ b/README.md @@ -221,7 +221,7 @@ let pool = device.create_command_pool(&pool_create_info).unwrap(); ### Optional linking -The default `linked` cargo feature will link your binary with the Vulkan loader directly and expose the infallible `Entry::new`. +The default `linked` cargo feature will link your binary with the Vulkan loader directly and expose the infallible `Entry::linked`. If your application can handle Vulkan being missing at runtime, you can instead enable the `loaded` feature to dynamically load Vulkan with `Entry::load`. ## Example