Revert "layers: Update docs for shared utils DLL"

This reverts commit 94dd6081959103c1c9b0bcfda173d4149d5555b9.

Change-Id: Ie5b437d822c5efe6baf0baf2830591f50bf3ee4d
This commit is contained in:
Mark Lobodzinski 2016-06-21 15:51:12 -06:00
parent 4aa4bfbf4e
commit 6636cfbe9d
2 changed files with 8 additions and 11 deletions

View File

@ -112,7 +112,7 @@ build_windows_targets.bat
At this point, you can use Windows Explorer to launch Visual Studio by double-clicking on the "VULKAN.sln" file in the \build folder. Once Visual Studio comes up, you can select "Debug" or "Release" from a drop-down list. You can start a build with either the menu (Build->Build Solution), or a keyboard shortcut (Ctrl+Shift+B). As part of the build process, Python scripts will create additional Visual Studio files and projects, along with additional source files. All of these auto-generated files are under the "build" folder.
Vulkan programs must be able to find and use the vulkan-1.dll library. Make sure it is either installed in the system library directory (typically C:\Windows\System32), or the PATH environment variable includes the folder that it is located in. Similarly, Vulkan layers require access to the VkLayer-utils.dll shared layer utility library. This file must be copied to the system library directory or into the directory containing the program executable.
Vulkan programs must be able to find and use the vulkan-1.dll library. Make sure it is either installed in the C:\Windows\System32 folder, or the PATH environment variable includes the folder that it is located in.
To run Vulkan programs you must tell the icd loader where to find the libraries.
This is described in a `LoaderAndLayerInterface` document in the `loader` folder in this repository.

View File

@ -1,6 +1,3 @@
NOTE: Recent changes have been made regarding the loading of the shared layer utilities library on Windows.
Please see [BUILD.md](BUILD.md) for details.
# Vulkan Ecosystem Components
This project provides Khronos official ICD loader and validation layers for Vulkan developers on Windows and Linux.