From 5e6c61ac0c4970434a40caabee2739263355b6e0 Mon Sep 17 00:00:00 2001 From: Jeff Juliano Date: Tue, 31 Jan 2017 16:36:18 -0500 Subject: [PATCH] loader: Minor language clarification, fix markup --- loader/LoaderAndLayerInterface.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/loader/LoaderAndLayerInterface.md b/loader/LoaderAndLayerInterface.md index 9891b29..32de771 100644 --- a/loader/LoaderAndLayerInterface.md +++ b/loader/LoaderAndLayerInterface.md @@ -62,12 +62,12 @@ wanting a better understanding of the Vulkan runtime. #### The Loader -As you can see, the application sits on one end, and interfaces directly to the -loader. The loader itself can contain some number of [layers](#layers), which -provide special functionality an application may wish to take advantage of. -Finally, on the other end of the loader from the application are the ICDs, which +The application sits on one end of, and interfaces directly with, the +loader. On the other end of the loader from the application are the ICDs, which control the Vulkan-capable hardware. An important point to remember is that -Vulkan-capable hardware can be graphics-based, compute-based, or both. +Vulkan-capable hardware can be graphics-based, compute-based, or both. Between +the application and the ICDs the loader can inject a number of optional +[layers](#layers) that provide special functionality. The loader is responsible for working with the various layers as well as supporting multiple GPUs and their drivers. Any Vulkan function may @@ -371,7 +371,7 @@ backwards compatibility is guaranteed for all versions with the same major number (e.g. 1.0 and 1.1). On Windows, the loader library encodes the ABI version in its name such that multiple ABI incompatible versions of the loader can peacefully coexist on a given system. The Vulkan loader library file name is -"vulkan-.dll". For example, for Vulkan version 1.X on Windows the +`vulkan-.dll`. For example, for Vulkan version 1.X on Windows the library filename is vulkan-1.dll. And this library file can typically be found in the windows/system32 directory (on 64-bit Windows installs, the 32-bit version of the loader with the same name can be found in the windows/sysWOW64 -- 2.7.4