11 lines
335 B
Plaintext
11 lines
335 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Copyright (c) 2016-2017 The Brenwill Workshop Ltd.
|
||
|
#
|
||
|
# getLatestVulkanLVL - Updates to the latest version of Vulkan-LoaderAndValidationLayers submodule.
|
||
|
#
|
||
|
# macOS usage: ./getLatestVulkanLVL
|
||
|
|
||
|
rm -rf Vulkan-LoaderAndValidationLayers
|
||
|
git clone https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers.git
|