diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2022-12-20 10:54:01 -0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-19 16:27:59 +0100 |
commit | 696346f4cc63b9395cc156da0e8d8fb65260c055 (patch) | |
tree | 0c52b7b6af5a397ef8a2556356d0b441d236d875 /modules/astcenc/config.py | |
parent | 14fdd28de9f1f9979cb6cffa4b715a16d406439d (diff) | |
download | redot-engine-696346f4cc63b9395cc156da0e8d8fb65260c055.tar.gz |
Add ASTC compression and decompression with Arm astcenc.
Co-authored-by: Gordon A Macpherson <gordon.a.macpherson@gmail.com>
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
Diffstat (limited to 'modules/astcenc/config.py')
-rw-r--r-- | modules/astcenc/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/astcenc/config.py b/modules/astcenc/config.py new file mode 100644 index 0000000000..eb565b85b9 --- /dev/null +++ b/modules/astcenc/config.py @@ -0,0 +1,6 @@ +def can_build(env, platform): + return env.editor_build + + +def configure(env): + pass |