Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
13206d6 Merge pull request #670 from dawikur/master

ebcfbba fix #4180: Long.prototype.toFloat64() overflow (#4182)

1363a04 Update SDK (v0.5.6)

c9ead07 Update other_libs.md

59f67e9 Merge "Merge remote-tracking branch 'gh/develop' into "internal"" into ub-games-master

b7804de25 Fix inclusion of SDL directory within the AOSP tree.

f2f249570 Update StackOverflow links to have relevant queries. PiperOrigin-RevId: 148175350 Change-Id: I9b4a9c8ecdc4b042a42b4864765dec6a68b32460

20081fb Change readme.md back into a link.

8af27718 update ChangeLog

ae7dc88 Merge pull request #10 from jsanmiya/master
  • Loading branch information
jsanmiya committed Feb 24, 2017
1 parent 43ebe3c commit f318069
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 4 deletions.
15 changes: 15 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,18 @@
[submodule "dependencies/flatbuffers"]
path = dependencies/flatbuffers
url = http://github.com/google/flatbuffers.git
[submodule "dependencies/cardboard-java"]
path = dependencies/cardboard-java
url = https://github.com/googlesamples/cardboard-java
[submodule "dependencies/stb"]
path = dependencies/stb
url = https://github.com/nothings/stb.git
[submodule "dependencies/sdl"]
path = dependencies/sdl
url = http://github.com/google/fplbase.git
[submodule "dependencies/fplbase"]
path = dependencies/fplbase
url = http://github.com/google/fplbase.git
[submodule "dependencies/webp"]
path = dependencies/webp
url = https://chromium.googlesource.com/webm/libwebp
1 change: 1 addition & 0 deletions dependencies/cardboard-java
Submodule cardboard-java added at 1363a0
2 changes: 1 addition & 1 deletion dependencies/flatbuffers
Submodule flatbuffers updated 319 files
1 change: 1 addition & 0 deletions dependencies/fplbase
Submodule fplbase added at f2f249
2 changes: 1 addition & 1 deletion dependencies/fplutil
Submodule fplutil updated 56 files
+5 −0 .gitignore
+0 −1 LICENSE
+202 −0 LICENSE
+0 −202 LICENSE.txt
+441 −0 bin/setup_all_prereqs.py
+270 −0 buildutil/android_common.mk
+352 −0 buildutil/cmake_common.txt
+5 −4 disttools/config.json
+89 −20 disttools/push_package.py
+2 −2 docs/src/index.md
+192 −0 docs/src/iossdkversions.js
+0 −1 docs/src/libfplutil/linking.md
+16 −0 docs/src/tested_ios_sdk_versions.json
+1 −1 examples/libfplutil_example/jni/Application.mk
+36 −0 fbx_common/CMakeLists.txt
+159 −0 fbx_common/cmake_fbx.txt
+161 −0 fbx_common/include/fbx_common/fbx_common.h
+47 −0 fbx_common/include/fbx_common/fbx_sdk_no_warnings.h
+281 −0 fbx_common/src/fbx_common.cpp
+3 −46 libfplutil/CMakeLists.txt
+113 −0 libfplutil/include/fplutil/android_utils.h
+197 −0 libfplutil/include/fplutil/mutex.h
+124 −0 libfplutil/include/fplutil/variable_size.h
+2 −2 libfplutil/include/fplutil/version.h
+15 −2 libfplutil/jni/Android.mk
+1 −1 libfplutil/jni/Application.mk
+60 −0 libfplutil/jni/libs/googletest/Android.mk
+20 −0 libfplutil/jni/libs/googletest/Application.mk
+120 −0 libfplutil/src/android_utils.cpp
+7 −0 libfplutil/unit_tests/CMakeLists.txt
+1 −11 libfplutil/unit_tests/test_index_allocator/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_index_allocator/jni/Application.mk
+1 −11 libfplutil/unit_tests/test_intrusive_list/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_intrusive_list/jni/Application.mk
+2 −2 libfplutil/unit_tests/test_intrusive_list/test_intrusive_list.cc
+1 −11 libfplutil/unit_tests/test_main/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_main/jni/Application.mk
+1 −11 libfplutil/unit_tests/test_perrormsg/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_perrormsg/jni/Application.mk
+1 −11 libfplutil/unit_tests/test_stdio/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_stdio/jni/Application.mk
+1 −11 libfplutil/unit_tests/test_string/jni/Android.mk
+1 −1 libfplutil/unit_tests/test_string/jni/Application.mk
+36 −0 libfplutil/unit_tests/test_variable_size/AndroidManifest.xml
+33 −0 libfplutil/unit_tests/test_variable_size/jni/Android.mk
+20 −0 libfplutil/unit_tests/test_variable_size/jni/Application.mk
+227 −0 libfplutil/unit_tests/test_variable_size/test_variable_size.cc
+ libs/cardboard.jar
+ libs/libprotobuf-java-2.6-nano.jar
+3 −3 readme.md
+0 −0 setuputil/__init__.py
+372 −0 setuputil/android.py
+174 −0 setuputil/common.py
+75 −0 setuputil/linux.py
+498 −0 setuputil/mac.py
+254 −0 setuputil/util.py
+642 −0 setuputil/windows.py
2 changes: 1 addition & 1 deletion dependencies/mathfu
Submodule mathfu updated 42 files
+1 −0 .gitignore
+11 −38 CMakeLists.txt
+0 −1 LICENSE
+202 −0 LICENSE
+0 −202 LICENSE.txt
+28 −19 android_config.mk
+2 −2 benchmarks/application_common.mk
+2 −2 benchmarks/vector_benchmark/main.cpp
+41 −0 cmake/find_fplutil.cmake
+8 −7 disttools/config.json
+2 −2 docs/src/doxyfile
+4 −4 docs/src/index.md
+1 −1 docs/src/programmers_guide/building_android.md
+3 −3 docs/src/programmers_guide/matrices.md
+1 −1 docs/src/programmers_guide/quaternions.md
+2 −2 docs/src/programmers_guide/utilities.md
+3 −3 docs/src/programmers_guide/vectors.md
+3 −6 include/mathfu/constants.h
+9 −4 include/mathfu/glsl_mappings.h
+35 −0 include/mathfu/internal/disable_warnings_begin.h
+23 −0 include/mathfu/internal/disable_warnings_end.h
+441 −0 include/mathfu/internal/matrix_4x4_simd.h
+166 −0 include/mathfu/internal/vector_2.h
+78 −61 include/mathfu/internal/vector_2_simd.h
+184 −0 include/mathfu/internal/vector_3.h
+108 −91 include/mathfu/internal/vector_3_simd.h
+195 −0 include/mathfu/internal/vector_4.h
+92 −85 include/mathfu/internal/vector_4_simd.h
+206 −27 include/mathfu/matrix.h
+2 −385 include/mathfu/matrix_4x4.h
+41 −13 include/mathfu/quaternion.h
+82 −0 include/mathfu/rect.h
+25 −3 include/mathfu/utilities.h
+448 −222 include/mathfu/vector.h
+3 −0 jni/Android.mk
+2 −2 jni/Application.mk
+45 −0 jni/find_fplutil.mk
+4 −4 readme.md
+10 −2 unit_tests/CMakeLists.txt
+2 −2 unit_tests/application_common.mk
+316 −135 unit_tests/matrix_test/matrix_test.cpp
+141 −100 unit_tests/quaternion_test/quaternion_test.cpp
+243 −142 unit_tests/vector_test/vector_test.cpp
1 change: 1 addition & 0 deletions dependencies/sdl
Submodule sdl added at b7804d
1 change: 1 addition & 0 deletions dependencies/stb
Submodule stb added at c9ead0
2 changes: 1 addition & 1 deletion dependencies/vectorial
1 change: 1 addition & 0 deletions dependencies/webp
Submodule webp added at 8af277

0 comments on commit f318069

Please sign in to comment.