mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-08-21 18:48:11 +00:00
Demo transcodes to various formats (tested only PVRTC, S3TC and uncompressed for now). Added docs.
11 lines
259 B
Bash
Executable File
11 lines
259 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Amalgamating files... this can take a while"
|
|
./combine.sh -r "../../transcoder" -o basisutranslib.cpp basisutranslib-in.cpp
|
|
# Did combining work?
|
|
if [ $? -ne 0 ]; then
|
|
echo "Combine script: FAILED"
|
|
exit 1
|
|
fi
|
|
echo "Combine script: PASSED"
|