diff --git a/README.md b/README.md index ed54f67..06728a0 100644 --- a/README.md +++ b/README.md @@ -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? diff --git a/test_runner.py b/test_runner.py index 7472808..9c481b9 100644 --- a/test_runner.py +++ b/test_runner.py @@ -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()