Merge branch 'devel' into jsoncpp

This commit is contained in:
Syoyo Fujita 2017-12-02 21:14:13 +09:00
commit 836753132b
3 changed files with 713 additions and 555 deletions

View File

@ -3,7 +3,7 @@
#EXTRA_CXXFLAGS := -fsanitize=address -Wall -Werror -Weverything -Wno-c++11-long-long -DTINYGLTF_APPLY_CLANG_WEVERYTHING
all:
clang++ $(EXTRA_CXXFLAGS) -g -O0 -o loader_example loader_example.cc
clang++ $(EXTRA_CXXFLAGS) -std=c++11 -g -O0 -o loader_example loader_example.cc
lint:
./cpplint.py tiny_gltf_loader.h

View File

@ -14,7 +14,13 @@ Work in process(`devel` branch). Very near to release, but need more tests and e
## Features
* Portable C++. C++-03 with STL dependency only.
* Written in portable C++. C++-03 with STL dependency only.
* [x] macOS + clang(LLVM)
* [x] iOS + clang
* [x] Linux + gcc/clang
* [x] Windows + MinGW
* [x] Android + CrystaX(NDK drop-in replacement) GCC
* [x] Web using Emscripten(LLVM)
* Moderate parsing time and memory consumption.
* glTF specification v2.0.0
* [x] ASCII glTF

File diff suppressed because it is too large Load Diff