mirror of https://github.com/mosra/magnum.git
2 changed files with 28 additions and 0 deletions
@ -0,0 +1,20 @@
|
||||
#!/bin/bash |
||||
|
||||
if [ "$#" -ne 1 ]; then |
||||
echo "Usage: $0 /path/to/flextGLgen.py" |
||||
exit 1 |
||||
fi |
||||
|
||||
cd GL |
||||
$1 -D . -t . extensions.txt |
||||
cd .. |
||||
|
||||
cd GLES2 |
||||
$1 -D . -t . extensions.txt |
||||
$1 -D . -t Emscripten/ Emscripten/extensions.txt |
||||
cd .. |
||||
|
||||
cd GLES3 |
||||
$1 -D . -t . extensions.txt |
||||
$1 -D . -t Emscripten/ Emscripten/extensions.txt |
||||
cd .. |
||||
Loading…
Reference in new issue