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

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
ab78196 Update the doc versions for the 1.3.1 release.

08945fc Update StackOverflow links to have relevant queries. PiperOrigin-RevId: 148175350 Change-Id: I3ebc812e07442e3928e1c763ba077497da0fed18

692fd2029 Reenable VR support in FPL Base, on Android.

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

aa91b27 Merge pull request #367 from mominul/patch-1

5e8d358 Update StackOverflow links to have relevant queries. PiperOrigin-RevId: 148175350 Change-Id: I5609f6b5bf5b927936256a464f84d54c838e6e7f

f353a38e [cff] Fix Savannah bug #44629.

bb223da C++ generator: Pre-allocating std::vector in UnPack methods. (#4187)

c156ca2 Removed references to nonexistant mp3 files

8b6bd85a7 Revert Android make for use with older SDL mixer.

8af27718 update ChangeLog

ae7dc88 Merge pull request #10 from jsanmiya/master

30ebb322 Merge pull request #381 from erwincoumans/master

0e8e32d Remove the unnecessary inclusion of "linebreak.h".

e312290 Remove comment from config.json.

20081fb Change readme.md back into a link.

7b2dae9 Update StackOverflow links to have relevant queries. PiperOrigin-RevId: 148175350 Change-Id: I0b23193dfe7111563bf1ba2642a5cc39fcfc0eb8

ec345ee Bump vendor string for dot release.

b7804de Fix inclusion of SDL directory within the AOSP tree.

dedeff6 Add "hyphenation patterns" for 22 languages

c9ead07 Update other_libs.md

e529e9f Add hyphenation-patterns as a dependency.

aee68508 Fix VC++ /analyze warnings

1363a04 Update SDK (v0.5.6)

13206d6 Merge pull request #670 from dawikur/master
  • Loading branch information
a-maurice committed Feb 27, 2017
1 parent ed0fdac commit bdbc317
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 11 deletions.
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,12 @@
[submodule "dependencies/googletest"]
path = dependencies/googletest
url = http://github.com/google/googletest.git
[submodule "dependencies/gumbo-parser"]
path = dependencies/gumbo-parser
url = https://github.com/google/gumbo-parser
[submodule "dependencies/hyphenation-patterns"]
path = dependencies/hyphenation-patterns
url = https://android.googlesource.com/platform/external/hyphenation-patterns
[submodule "dependencies/stb"]
path = dependencies/stb
url = https://github.com/nothings/stb.git
2 changes: 1 addition & 1 deletion dependencies/breadboard
2 changes: 1 addition & 1 deletion dependencies/flatbuffers
Submodule flatbuffers updated 319 files
2 changes: 1 addition & 1 deletion dependencies/flatui
Submodule flatui updated 213 files
2 changes: 1 addition & 1 deletion dependencies/fplbase
Submodule fplbase updated 133 files
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
1 change: 1 addition & 0 deletions dependencies/gumbo-parser
Submodule gumbo-parser added at aa91b2
1 change: 1 addition & 0 deletions dependencies/hyphenation-patterns
Submodule hyphenation-patterns added at dedeff
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
2 changes: 1 addition & 1 deletion dependencies/motive
Submodule motive updated 94 files
+4 −1 .gitignore
+21 −54 CMakeLists.txt
+ bin/Darwin/anim_pipeline
+ bin/Darwin/fplviewer
+ bin/Linux/anim_pipeline
+ bin/Linux/fplviewer
+ bin/Windows/Release/anim_pipeline.exe
+ bin/Windows/Release/fplviewer.exe
+41 −0 cmake/find_fplutil.cmake
+8 −6 disttools/config.json
+2 −2 docs/src/index.md
+29 −3 include/motive/anim.h
+67 −22 include/motive/anim_table.h
+16 −0 include/motive/common.h
+190 −70 include/motive/init.h
+1 −2 include/motive/io/flatbuffers.h
+44 −0 include/motive/math/angle.h
+77 −48 include/motive/math/bulk_spline_evaluator.h
+423 −68 include/motive/math/compact_spline.h
+162 −0 include/motive/math/compact_spline_node.h
+159 −20 include/motive/math/curve.h
+611 −0 include/motive/math/curve_util.h
+118 −0 include/motive/math/float.h
+39 −0 include/motive/math/range.h
+108 −14 include/motive/motivator.h
+75 −42 include/motive/processor.h
+125 −0 include/motive/simple_processor_template.h
+45 −7 include/motive/target.h
+11 −2 jni/Android.mk
+1 −1 jni/Application.mk
+2 −20 jni/android_config.mk
+45 −0 jni/find_fplutil.mk
+1 −1 readme.md
+6 −15 schemas/anim.fbs
+53 −0 schemas/anim_list.fbs
+9 −6 schemas/anim_table.fbs
+43 −0 schemas/compact_spline.fbs
+26 −0 schemas/spline_anim.fbs
+5 −4 src/android_common.mk
+14 −102 src/anim_pipeline/CMakeLists.txt
+786 −379 src/anim_pipeline/anim_pipeline.cpp
+5 −2 src/benchmarker/CMakeLists.txt
+6 −5 src/benchmarker/benchmarker.cpp
+1 −1 src/benchmarker/jni/Application.mk
+38 −0 src/motive/anim.cpp
+278 −148 src/motive/anim_table.cpp
+4 −7 src/motive/init.cpp
+22 −14 src/motive/io/flatbuffers.cpp
+55 −0 src/motive/math/angle.cpp
+101 −61 src/motive/math/bulk_spline_evaluator.cpp
+167 −221 src/motive/math/compact_spline.cpp
+157 −72 src/motive/math/curve.cpp
+635 −0 src/motive/math/curve_util.cpp
+30 −0 src/motive/math/float.cpp
+5 −12 src/motive/processor.cpp
+75 −0 src/motive/processor/const_processor.cpp
+177 −0 src/motive/processor/ease_in_ease_out_processor.cpp
+51 −48 src/motive/processor/matrix_processor.cpp
+35 −29 src/motive/processor/overshoot_processor.cpp
+25 −21 src/motive/processor/rig_processor.cpp
+91 −66 src/motive/processor/spline_processor.cpp
+117 −0 src/motive/processor/spring_processor.cpp
+1 −1 src/motive/version.cpp
+2 −2 src/samples/duck2f/jni/Application.mk
+2 −2 src/samples/linear_processor/jni/Application.mk
+42 −25 src/samples/linear_processor/linear_processor.cpp
+2 −2 src/samples/own_vector_types/jni/Application.mk
+9 −7 src/samples/own_vector_types/own_vector_types.cpp
+2 −2 src/samples/spline1f/jni/Application.mk
+6 −4 src/samples/spline1f/spline1f.cpp
+14 −8 src/tests/CMakeLists.txt
+2 −2 src/tests/angle_test/jni/Application.mk
+164 −11 src/tests/curve_test/curve_test.cpp
+2 −2 src/tests/curve_test/jni/Application.mk
+35 −0 src/tests/curve_util_test/AndroidManifest.xml
+566 −0 src/tests/curve_util_test/curve_util_test.cpp
+19 −0 src/tests/curve_util_test/jni/Android.mk
+21 −0 src/tests/curve_util_test/jni/Application.mk
+35 −0 src/tests/float_test/AndroidManifest.xml
+164 −0 src/tests/float_test/float_test.cpp
+19 −0 src/tests/float_test/jni/Android.mk
+21 −0 src/tests/float_test/jni/Application.mk
+2 −2 src/tests/motive_test/jni/Application.mk
+349 −76 src/tests/motive_test/motive_test.cpp
+2 −2 src/tests/range_test/jni/Application.mk
+28 −0 src/tests/range_test/range_test.cpp
+2 −2 src/tests/spline_test/jni/Application.mk
+189 −28 src/tests/spline_test/spline_test.cpp
+35 −0 src/tests/table_test/AndroidManifest.xml
+19 −0 src/tests/table_test/jni/Android.mk
+21 −0 src/tests/table_test/jni/Application.mk
+311 −0 src/tests/table_test/table_test.cpp
+48 −0 src/viewer/CMakeLists.txt
+671 −0 src/viewer/viewer.cpp
2 changes: 1 addition & 1 deletion dependencies/pindrop
Submodule pindrop updated 53 files
+53 −106 CMakeLists.txt
+41 −0 cmake/find_fplutil.cmake
+1 −0 cmake/libogg/CMakeLists.txt
+1 −0 cmake/libvorbis/CMakeLists.txt
+1 −0 cmake/sdl_mixer/CMakeLists.txt
+2 −9 disttools/config.json
+4 −2 docs/src/index.md
+221 −0 include/pindrop/audio_engine.h
+87 −0 include/pindrop/bus.h
+108 −0 include/pindrop/channel.h
+94 −0 include/pindrop/listener.h
+50 −0 include/pindrop/log.h
+9 −417 include/pindrop/pindrop.h
+47 −0 include/pindrop/version.h
+29 −14 jni/Android.mk
+4 −6 jni/Application.mk
+2 −28 jni/android_config.mk
+45 −0 jni/find_fplutil.mk
+1 −1 jni/sdl_mixer/Android.mk
+2 −1 samples/CMakeLists.txt
+15 −16 samples/main.cpp
+5 −2 src/asynchronous_loader/file_loader.h
+116 −168 src/audio_engine.cpp
+29 −19 src/audio_engine_internal_state.h
+1 −1 src/bus.cpp
+1 −2 src/bus_internal_state.cpp
+8 −7 src/bus_internal_state.h
+2 −2 src/channel.cpp
+40 −174 src/channel_internal_state.cpp
+29 −78 src/channel_internal_state.h
+0 −373 src/intrusive_list.h
+4 −2 src/listener.cpp
+10 −4 src/listener_internal_state.h
+35 −0 src/log.cpp
+35 −0 src/mixer/example/mixer.h
+77 −0 src/mixer/example/real_channel.h
+41 −0 src/mixer/example/sound.h
+9 −11 src/mixer/sdl_mixer/mixer.cpp
+6 −7 src/mixer/sdl_mixer/mixer.h
+202 −0 src/mixer/sdl_mixer/real_channel.cpp
+81 −0 src/mixer/sdl_mixer/real_channel.h
+36 −0 src/mixer/sdl_mixer/sound.cpp
+42 −0 src/mixer/sdl_mixer/sound.h
+0 −80 src/sound.cpp
+0 −88 src/sound.h
+2 −4 src/sound_bank.cpp
+0 −1 src/sound_bank.h
+18 −23 src/sound_collection.cpp
+7 −8 src/sound_collection.h
+1 −1 src/synchronous_loader/file_loader.h
+52 −0 src/version.cpp
+86 −77 unit_tests/audio_engine_test.cpp
+0 −251 unit_tests/intrusive_list_test.cpp
1 change: 1 addition & 0 deletions dependencies/stb
Submodule stb added at c9ead0
2 changes: 1 addition & 1 deletion dependencies/vectorial

0 comments on commit bdbc317

Please sign in to comment.