mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-11 17:59:01 +08:00
Update README.
Fix exec name in test_runner.py
This commit is contained in:
parent
92cb3d9c4d
commit
36c718386c
@ -33,7 +33,7 @@
|
||||
## TODOs
|
||||
|
||||
* [ ] Support multiple scenes in `.gltf`
|
||||
* [ ] Parse `animation`, `program`, `sampler`, `shader`, `technique`
|
||||
* [ ] Parse `animation`, `sampler`
|
||||
* [ ] Compression/decompression(Open3DGC, etc)
|
||||
* [ ] Support `extensions` and `extras` property
|
||||
* [ ] HDR image?
|
||||
|
@ -11,7 +11,7 @@ import subprocess
|
||||
# -- config -----------------------
|
||||
|
||||
# Absolute path pointing to your cloned git repo of https://github.com/KhronosGroup/glTF/sampleModels
|
||||
base_model_dir = "/Users/syoyo/work/glTF/sampleModels"
|
||||
base_model_dir = "/home/syoyo/work/glTF/sampleModels"
|
||||
|
||||
kinds = [ "glTF", "glTF-Binary", "glTF-Embedded", "glTF-MaterialsCommon"]
|
||||
# ---------------------------------
|
||||
@ -22,7 +22,7 @@ success = []
|
||||
def run(filename):
|
||||
|
||||
print("Testing: " + filename)
|
||||
cmd = ["./example", filename]
|
||||
cmd = ["./loader_example", filename]
|
||||
try:
|
||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
(stdout, stderr) = p.communicate()
|
||||
|
Loading…
x
Reference in New Issue
Block a user