mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-08-12 16:09:03 +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
|
## TODOs
|
||||||
|
|
||||||
* [ ] Support multiple scenes in `.gltf`
|
* [ ] Support multiple scenes in `.gltf`
|
||||||
* [ ] Parse `animation`, `program`, `sampler`, `shader`, `technique`
|
* [ ] Parse `animation`, `sampler`
|
||||||
* [ ] Compression/decompression(Open3DGC, etc)
|
* [ ] Compression/decompression(Open3DGC, etc)
|
||||||
* [ ] Support `extensions` and `extras` property
|
* [ ] Support `extensions` and `extras` property
|
||||||
* [ ] HDR image?
|
* [ ] HDR image?
|
||||||
|
@ -11,7 +11,7 @@ import subprocess
|
|||||||
# -- config -----------------------
|
# -- config -----------------------
|
||||||
|
|
||||||
# Absolute path pointing to your cloned git repo of https://github.com/KhronosGroup/glTF/sampleModels
|
# 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"]
|
kinds = [ "glTF", "glTF-Binary", "glTF-Embedded", "glTF-MaterialsCommon"]
|
||||||
# ---------------------------------
|
# ---------------------------------
|
||||||
@ -22,7 +22,7 @@ success = []
|
|||||||
def run(filename):
|
def run(filename):
|
||||||
|
|
||||||
print("Testing: " + filename)
|
print("Testing: " + filename)
|
||||||
cmd = ["./example", filename]
|
cmd = ["./loader_example", filename]
|
||||||
try:
|
try:
|
||||||
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
(stdout, stderr) = p.communicate()
|
(stdout, stderr) = p.communicate()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user