From: Jean-Philippe Bruyère Date: Tue, 29 Oct 2019 06:14:34 +0000 (+0100) Subject: datas download script X-Git-Tag: v0.1.21~25 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=821ca0dc7f0ed12c8215bcd55df9b2c6f78e68cc;p=jp%2Fvke.net.git datas download script --- diff --git a/.gitignore b/.gitignore index 1aece0d..8c08057 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ .vs build/ packages/ +datas +datas.zip bin/ obj/ *.user diff --git a/README.md b/README.md index 0dc9e04..94bb90f 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ vke.net **vke.net** (_vulkan engine for .net_) is composed of high level classes encapsulating vulkan objects with `IDispose` model and **reference counting**. [GLFW](https://www.glfw.org/) handles the windowing system. +Use the 'download_datas.sh' script for downloading sample's datas. + ### Requirements - [GLFW](https://www.glfw.org/) if you use the `VkWindow` class. - If you want to use `jpg`, `jpeg`, `png` image [libstb](https://github.com/nothings/stb) (on debian install **libstb-dev**). Note that `ktx` image loading has no dependencies. @@ -37,3 +39,4 @@ vke.net - ktx image loading. - Memory pools + diff --git a/download_datas.bat b/download_datas.bat new file mode 100644 index 0000000..46e16fd --- /dev/null +++ b/download_datas.bat @@ -0,0 +1,3 @@ +echo //TODO +echo link = "https://onedrive.live.com/download?cid=B3181664476E9B48&resid=B3181664476E9B48%21167&authkey=APMbPmUMFnlrN6s" +echo rename downloaded file to datas.zip, and unzip. diff --git a/download_datas.sh b/download_datas.sh new file mode 100755 index 0000000..64d3cc2 --- /dev/null +++ b/download_datas.sh @@ -0,0 +1,3 @@ +#!/bin/bash +wget --no-check-certificate "https://onedrive.live.com/download?cid=B3181664476E9B48&resid=B3181664476E9B48%21167&authkey=APMbPmUMFnlrN6s" -O datas.zip +unzip datas.zip