feat: replace triangle test by cube

This commit is contained in:
2026-02-15 20:10:17 +01:00
parent a674c391a8
commit ff7a82f646
13 changed files with 149 additions and 117 deletions

20
scripts/glsl2pak.py Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env python3
from scripts.glsl2c import write_binary
from pathlib import Path
import sys
def main() -> int:
if len(sys.argv) < 2:
print("glsl2pak.py <shader_file>... output")
return 1
output = sys.argv.pop()
print(sys.argv)
return 0
if __name__ == "__main__":
sys.exit(main())