From 821ca0dc7f0ed12c8215bcd55df9b2c6f78e68cc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Tue, 29 Oct 2019 07:14:34 +0100 Subject: [PATCH] datas download script --- .gitignore | 2 ++ README.md | 3 +++ download_datas.bat | 3 +++ download_datas.sh | 3 +++ 4 files changed, 11 insertions(+) create mode 100644 download_datas.bat create mode 100755 download_datas.sh 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 -- 2.47.3