1. 6e08b17 Add feature to store original JSON string for extras and extensions(for user-specific JSON parsing). # Fixes 215 by Syoyo Fujita · 5 years ago store-json-string-for-extras-and-extensions
  2. 1100f0f Allow parsing integer number value as double(For example, glTF-Sample-Models/2.0/Cameras/glTF has `zfar` number property with integer value, which trigerred a parsing failure). by Syoyo Fujita · 5 years ago
  3. 2b66c81 Merge pull request #212 from Selmar/move_operator by Syoyo Fujita · 5 years ago
  4. f29375f revert some local modifications, oops.... >_> by Selmar Kok · 5 years ago
  5. 79e3df2 replace TINYGLTF_USE_NO_EXCEPT with GNU compiler version check by Selmar Kok · 5 years ago
  6. e3cf5ed Merge remote-tracking branch 'origin/Selmar-move_operator' into move_operator by Selmar Kok · 5 years ago
  7. b74fade TINYGLTF_USE_NOEXCEPT by Selmar Kok · 5 years ago
  8. a11709a Merge pull request #213 from dmuir/master by Syoyo Fujita · 5 years ago
  9. cf66868 Fix check for invalid glTF to consider invalid length/model_length combinations. by Doug Muir · 5 years ago
  10. 817bbcf Show clang version in Travis build. by Syoyo Fujita · 5 years ago Selmar-move_operator
  11. 2346795 pbrMetallicRoughnes default noexcept move operator by Selmar Kok · 5 years ago
  12. 6f08785 Merge remote-tracking branch 'origin/master' into move_operator by Selmar Kok · 5 years ago
  13. ff2b1f9 use default noexcept move constructor / operator by Selmar Kok · 5 years ago
  14. e886247 Fix parsing a glTF file with 2GB+ or lareger size. by Syoyo Fujita · 5 years ago
  15. 83bb1a4 Merge pull request #211 from Selmar/add_missing_serialization by Syoyo Fujita · 5 years ago
  16. c3353e1 set default values for baseColorFactor so that it has correct values when parsing a material without a pbrMetallicRoughness struct by Selmar Kok · 5 years ago
  17. 81b672b add some missing serialization // add mesh==() weights comparison // use const iterator for extension serialization by Selmar Kok · 5 years ago
  18. cece6ee Merge pull request #209 from patriciogonzalezvivo/master by Syoyo Fujita · 5 years ago
  19. 31f875d adding glslViewer by Patricio Gonzalez Vivo · 5 years ago
  20. 8dccf9b Merge pull request #208 from toshiks/patch-1 by Syoyo Fujita · 6 years ago
  21. 508dcfa Added project to Readme.md (QuickLook GLTF plugin) by Anton Klochkov · 6 years ago
  22. 7e00904 Do not serialize pbrMetallicRoughness when they have all default values. Fixes #204 by Syoyo Fujita · 6 years ago
  23. 1497793 Add a link to Lighthouse 2. by Syoyo Fujita · 6 years ago
  24. 8bb18fb Merge pull request #202 from Ybalrid/fix_copy_assignment_operator by Syoyo Fujita · 6 years ago
  25. 9eeaf20 Fix copy-assignment operator by Arthur Brainville (Ybalrid) · 6 years ago
  26. a34aa8e Suppress variable-is-shadowed warnings. by Syoyo Fujita · 6 years ago jrkoonce-master
  27. 59b2966 Merge branch 'master' of https://github.com/jrkoonce/tinygltf into jrkoonce-master by Syoyo Fujita · 6 years ago
  28. 7481011 Removing RapidJSON toggle by jrkoonce · 6 years ago
  29. 0d2b6ef Removing warnings by jrkoonce · 6 years ago
  30. ce7fa74 Support simultaneous gltf load/saves by jrkoonce · 6 years ago
  31. 906f98f Revert "Support simultaneous gltf load/saves" by jrkoonce · 6 years ago
  32. d2a2703 Support simultaneous gltf load/saves by jrkoonce · 6 years ago
  33. 95f0575 Revert "Support simultaneous gltf load/saves (TINYGLTF_USE_RAPIDJSON_CRTALLOCATOR)" by jrkoonce · 6 years ago
  34. ab63db6 Support simultaneous gltf load/saves (TINYGLTF_USE_RAPIDJSON_CRTALLOCATOR) by jrkoonce · 6 years ago
  35. 6ff9539 Fix Compiler Warnings by jrkoonce · 6 years ago
  36. c29bd3d Use const reference for Buffer to fix compilation. Removed UTF BOM? by Syoyo Fujita · 6 years ago
  37. 63419a1 Revert accidental committed change by jrkoonce · 6 years ago
  38. 06c30c4 Fixed Bugs/Unit Tests Pass by jrkoonce · 6 years ago
  39. 67e6160 Fixed move bugs by jrkoonce · 6 years ago
  40. a3b8b35 Merge branch 'pr/1' by jrkoonce · 6 years ago
  41. 5145394 Made C++14 optional, default off. by jrkoonce · 6 years ago
  42. 67aa2ca Merge pull request #200 from ux3d/feature/allow-scenes-without-nodes by Syoyo Fujita · 6 years ago
  43. ce25385 remove extra parenthesis by Benjamin Schmithüsen · 6 years ago
  44. 6143c66 don't fail if a scene has no nodes property (which is not required) by Benjamin Schmithüsen · 6 years ago
  45. 81d75df Rename typeSizeInBytes to numComponents. by Syoyo Fujita · 6 years ago DingboDingboDingbo-patch-1
  46. 83ccb9f GetTypeSizeInBytes not returning Type Size In Bytes by DingboDingboDingbo · 6 years ago
  47. 9b6f52e Fix bug in ParseNumberArrayProperty() by jrkoonce · 6 years ago
  48. 5cecc41 More cleanup by jrkoonce · 6 years ago
  49. 208c305 Remove test code accidentally commited by jrkoonce · 6 years ago
  50. cba5d6c RapidJson 1.1 support + More move semantics by jrkoonce · 6 years ago
  51. d1e1472 Update tiny_gltf.h by jrkoonce · 6 years ago
  52. ff51570 Apply clang format. Remove `const static std::string` global variable. by Syoyo Fujita · 6 years ago
  53. a472a3f Add Set/Get SerializeDefaultValues method(W.I.P.) by Syoyo Fujita · 6 years ago
  54. 1f160d5 Merge pull request #195 from ux3d/fix/parse-int-as-double by Syoyo Fujita · 6 years ago
  55. 5150a46 Merge branch 'master' of github.com:syoyo/tinygltf by Syoyo Fujita · 6 years ago
  56. cea69e3 Suppress clang warnings. by Syoyo Fujita · 6 years ago
  57. 8b56c01 Merge pull request #193 from Selmar/emissiveFactor_defaults by Syoyo Fujita · 6 years ago
  58. c7e205b when parsing a number from an int, also set the 'real value' to the value by Benjamin Schmithüsen · 6 years ago
  59. 6dba6c6 [emissiveFactor] correct default values by Selmar Kok · 6 years ago
  60. 6df800d [emissiveFactor] fix inconsistency with baseColorFactor where default values were set only for baseColorFactor and not emissiveFactor by Selmar Kok · 6 years ago
  61. 2f044e7 Merge pull request #191 from Selmar/animation_extension_properties by Syoyo Fujita · 6 years ago
  62. af5a5ef Merge branch 'master' of github.com:syoyo/tinygltf into animation_extension_properties by Selmar Kok · 6 years ago
  63. 6591ba4 Merge pull request #190 from ux3d/feature/parse-node-weights by Syoyo Fujita · 6 years ago
  64. 74c3c10 serialize node weights by Benjamin Schmithüsen · 6 years ago
  65. ad63bf7 parse node weights by Benjamin Schmithüsen · 6 years ago
  66. 5d43cf8 Merge branch 'master' of github.com:syoyo/tinygltf by Selmar Kok · 6 years ago
  67. 4e2988e add extension property for Animation and AnimationChannel by Selmar Kok · 6 years ago
  68. ee179b2 Set default value of minFilter and magFilter in Sampler to -1(unset), since glTF 2.0 spec does not declare default values for it. by Syoyo Fujita · 6 years ago
  69. 4ebd636 Fix inequality of texture index check when serializing texture of material. by Syoyo Fujita · 6 years ago
  70. 67d3d25 Merge pull request #188 from ux3d/fix/alphaMode by Syoyo Fujita · 6 years ago
  71. d9a468b Fixed saving of alphaMode if not OPAQUE Removed duplicated code for alphaCutoff by Patrick Härtl · 6 years ago
  72. c7bae71 Merge pull request #185 from DerouineauNicolas/endif by Syoyo Fujita · 6 years ago
  73. f93642c remove extra #endif in examples/basic app by nicolasDEROUINEAU · 6 years ago
  74. f68d5e1 Merge pull request #182 from ux3d/textureinfo by Syoyo Fujita · 6 years ago textureinfo
  75. 1c84fc2 fix default value checks for serialization by Benjamin Schmithüsen · 6 years ago
  76. 150f243 Change the behavior of NUMBER value in `Value` class. NUMBER now reprents the value is either int or real(floating point). by Syoyo Fujita · 6 years ago
  77. 0ee273f Update README. Add note on `tinygltf::Value` for extensions. by Syoyo Fujita · 6 years ago
  78. 046400b Now material is parsed as a struct with explicit parameter definitions. by Syoyo Fujita · 6 years ago
  79. 89fd93f Introduce TextureInfo class(W.I.P.) by Syoyo Fujita · 6 years ago
  80. e940337 Merge pull request #180 from ux3d/master by Syoyo Fujita · 6 years ago
  81. 1b5f476 Merge pull request #178 from rapidimages/feature/write-to-streams by Syoyo Fujita · 6 years ago
  82. 52936a0 clang format by Johan Bowald · 6 years ago
  83. f3ef880 call json constructor explicitly by Benjamin Schmithüsen · 6 years ago
  84. 1af7c1d can write to streams by Johan Bowald · 6 years ago
  85. c0b79af Merge pull request #2 from syoyo/master by Benjamin Schmithüsen · 6 years ago
  86. c49461b Merge pull request #176 from ux3d/feature/update-lights by Syoyo Fujita · 6 years ago
  87. 051f4be serialize lights by Benjamin Schmithüsen · 6 years ago
  88. 4557b6a fix spot light parsingg by Benjamin Schmithüsen · 6 years ago
  89. b2d7d88 parse additional light properties and fix defaults by Benjamin Schmithüsen · 6 years ago
  90. b7ca7c9 update lights to follow the KHR_lights_punctual extension by Benjamin Schmithüsen · 6 years ago
  91. 0ffedcb Merge pull request #1 from syoyo/master by Benjamin Schmithüsen · 6 years ago
  92. 80faac5 Merge pull request #174 from Ybalrid/pr_material_param_tex_info by Syoyo Fujita · 6 years ago
  93. 2a9d9de Applied clang-format by Arthur Brianville (Ybalrid) · 6 years ago
  94. 8a98d98 Add Paramter::TextureStrength(). Precise default values. by Arthur Brainville · 6 years ago
  95. 689edcb Merge pull request #173 from christophe-f8/master by Syoyo Fujita · 6 years ago
  96. 820ede8 Adding texture scale reading (for normal maps) + asset copyright and texture names to the export by Christophe · 6 years ago
  97. d6b0d0a Explicitly define copy constructor and copy assignment operator for Model an Node. by Syoyo Fujita · 6 years ago
  98. 5f180aa Merge pull request #171 from Ybalrid/fix_double_parse_material_name by Syoyo Fujita · 6 years ago
  99. dab0daa Material names are stored once in material.name, then duplicated in "additionalValues" by Arthur Brainville (Ybalrid) · 6 years ago
  100. 0ccc8dc Merge pull request #170 from Ybalrid/msvc_warn_fix by Syoyo Fujita · 6 years ago