Added android support for gears, geometryshader, instancing and occlusion query examples (#97)

This commit is contained in:
saschawillems 2016-03-25 19:43:01 +01:00
parent e833164b99
commit fd18bd8084
27 changed files with 568 additions and 59 deletions

View file

@ -0,0 +1,20 @@
cd jni
call ndk-build
if %ERRORLEVEL% EQU 0 (
echo ndk-build has failed, build cancelled
cd..
mkdir "assets\shaders\instancing"
xcopy "..\..\data\shaders\instancing\*.spv" "assets\shaders\instancing" /Y
mkdir "assets\models"
xcopy "..\..\data\models\angryteapot.3ds" "assets\models" /Y
mkdir "res\drawable"
xcopy "..\..\android\images\icon.png" "res\drawable" /Y
call ant debug -Dout.final.file=vulkanInstancing.apk
) ELSE (
echo error : ndk-build failed with errors!
cd..
)