Skip to content

Commit

Permalink
vendor: Updated freetype-gl, glfw, glm and mruby
Browse files Browse the repository at this point in the history
  • Loading branch information
IceDragon200 committed Mar 23, 2016
1 parent dafc229 commit 1f1ec27
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vendor/glfw
Submodule glfw updated 74 files
+22 −22 .appveyor.yml
+106 −106 .github/CONTRIBUTING.md
+7 −0 .gitignore
+0 −16 CMake/modules/FindEGL.cmake
+0 −16 CMake/modules/FindGLESv1.cmake
+0 −16 CMake/modules/FindGLESv2.cmake
+31 −0 CMake/modules/FindVulkan.cmake
+0 −66 CMake/modules/FindWayland.cmake
+26 −0 CMake/modules/FindWaylandProtocols.cmake
+11 −25 CMakeLists.txt
+41 −8 README.md
+127 −0 deps/vulkan/vk_platform.h
+3,775 −0 deps/vulkan/vulkan.h
+30 −2 docs/CMakeLists.txt
+3 −17 docs/Doxyfile.in
+18 −5 docs/build.dox
+40 −5 docs/compat.dox
+8 −10 docs/compile.dox
+14 −6 docs/context.dox
+41 −11 docs/input.dox
+1 −1 docs/internal.dox
+22 −10 docs/intro.dox
+19 −17 docs/main.dox
+11 −9 docs/monitor.dox
+2 −2 docs/moving.dox
+45 −1 docs/news.dox
+8 −8 docs/quick.dox
+1 −1 docs/rift.dox
+212 −0 docs/vulkan.dox
+92 −15 docs/window.dox
+2 −0 examples/CMakeLists.txt
+21 −2 examples/boing.c
+586 −71 include/GLFW/glfw3.h
+10 −1 src/CMakeLists.txt
+3 −3 src/cocoa_init.m
+6 −3 src/cocoa_platform.h
+5 −16 src/cocoa_time.c
+334 −58 src/cocoa_window.m
+3 −3 src/context.c
+41 −12 src/egl_context.c
+3 −11 src/egl_context.h
+0 −2 src/glfw_config.h.in
+16 −5 src/glx_context.c
+8 −2 src/init.c
+37 −23 src/input.c
+159 −18 src/internal.h
+1 −0 src/mir_init.c
+19 −0 src/mir_platform.h
+121 −3 src/mir_window.c
+20 −11 src/monitor.c
+20 −32 src/posix_time.c
+1 −2 src/posix_time.h
+287 −0 src/vulkan.c
+18 −3 src/wgl_context.c
+3 −3 src/win32_init.c
+97 −57 src/win32_monitor.c
+27 −6 src/win32_platform.h
+14 −26 src/win32_time.c
+404 −133 src/win32_window.c
+123 −45 src/window.c
+14 −5 src/wl_init.c
+29 −0 src/wl_platform.h
+236 −18 src/wl_window.c
+31 −28 src/x11_init.c
+46 −14 src/x11_platform.h
+604 −288 src/x11_window.c
+12 −2 tests/CMakeLists.txt
+14 −2 tests/cursor.c
+258 −34 tests/glfwinfo.c
+148 −0 tests/icon.c
+38 −2 tests/iconify.c
+98 −0 tests/timeout.c
+2,245 −0 tests/vulkan.c
+30 −3 tests/windows.c
2 changes: 1 addition & 1 deletion vendor/glm
Submodule glm updated 90 files
+16 −0 CMakeLists.txt
+ doc/glm.docx
+15 −2 glm/CMakeLists.txt
+7 −4 glm/detail/dummy.cpp
+1 −1 glm/detail/func_common.inl
+6 −6 glm/detail/func_matrix.hpp
+2 −2 glm/detail/func_matrix.inl
+2 −2 glm/detail/func_trigonometric.inl
+15 −15 glm/detail/func_vector_relational.inl
+0 −8 glm/detail/precision.hpp
+49 −27 glm/detail/setup.hpp
+24 −58 glm/detail/type_mat2x2.hpp
+56 −85 glm/detail/type_mat2x2.inl
+23 −53 glm/detail/type_mat2x3.hpp
+42 −71 glm/detail/type_mat2x3.inl
+23 −53 glm/detail/type_mat2x4.hpp
+42 −71 glm/detail/type_mat2x4.inl
+25 −54 glm/detail/type_mat3x2.hpp
+50 −79 glm/detail/type_mat3x2.inl
+27 −62 glm/detail/type_mat3x3.hpp
+59 −89 glm/detail/type_mat3x3.inl
+25 −55 glm/detail/type_mat3x4.hpp
+51 −80 glm/detail/type_mat3x4.inl
+30 −60 glm/detail/type_mat4x2.hpp
+58 −80 glm/detail/type_mat4x2.inl
+12 −42 glm/detail/type_mat4x3.hpp
+17 −46 glm/detail/type_mat4x3.inl
+13 −48 glm/detail/type_mat4x4.hpp
+17 −46 glm/detail/type_mat4x4.inl
+39 −67 glm/detail/type_vec1.hpp
+48 −77 glm/detail/type_vec1.inl
+31 −65 glm/detail/type_vec2.hpp
+42 −64 glm/detail/type_vec2.inl
+51 −86 glm/detail/type_vec3.hpp
+42 −64 glm/detail/type_vec3.inl
+25 −74 glm/detail/type_vec4.hpp
+97 −105 glm/detail/type_vec4.inl
+49 −49 glm/gtc/bitfield.inl
+26 −0 glm/gtc/integer.hpp
+35 −0 glm/gtc/integer.inl
+6 −6 glm/gtc/matrix_access.inl
+134 −145 glm/gtc/matrix_transform.inl
+19 −55 glm/gtc/quaternion.hpp
+22 −111 glm/gtc/quaternion.inl
+5 −5 glm/gtc/ulp.inl
+16 −16 glm/gtx/associated_min_max.inl
+16 −16 glm/gtx/component_wise.inl
+20 −36 glm/gtx/dual_quaternion.hpp
+24 −40 glm/gtx/dual_quaternion.inl
+1 −1 glm/gtx/fast_exponential.inl
+1 −0 glm/gtx/matrix_decompose.hpp
+14 −22 glm/gtx/matrix_decompose.inl
+19 −19 glm/gtx/matrix_query.inl
+1 −1 glm/gtx/polar_coordinates.inl
+37 −26 glm/gtx/range.hpp
+0 −12 glm/gtx/simd_mat4.hpp
+0 −5 glm/gtx/simd_mat4.inl
+0 −25 glm/gtx/simd_quat.hpp
+0 −20 glm/gtx/simd_quat.inl
+0 −24 glm/gtx/simd_vec4.hpp
+0 −19 glm/gtx/simd_vec4.inl
+224 −0 glm/gtx/type_trait.hpp
+0 −0 glm/gtx/type_trait.inl
+25 −2 readme.md
+0 −1 test/core/CMakeLists.txt
+1 −1 test/core/core_func_common.cpp
+12 −1 test/core/core_func_matrix.cpp
+3 −0 test/core/core_setup_message.cpp
+0 −116 test/core/core_type_length_size.cpp
+0 −16 test/core/core_type_mat2x2.cpp
+0 −17 test/core/core_type_mat2x3.cpp
+0 −16 test/core/core_type_mat2x4.cpp
+0 −17 test/core/core_type_mat3x2.cpp
+0 −16 test/core/core_type_mat3x3.cpp
+0 −16 test/core/core_type_mat3x4.cpp
+0 −16 test/core/core_type_mat4x2.cpp
+0 −16 test/core/core_type_mat4x3.cpp
+0 −16 test/core/core_type_mat4x4.cpp
+0 −23 test/core/core_type_vec1.cpp
+0 −22 test/core/core_type_vec2.cpp
+0 −26 test/core/core_type_vec3.cpp
+0 −32 test/core/core_type_vec4.cpp
+38 −0 test/gtc/gtc_integer.cpp
+0 −6 test/gtc/gtc_quaternion.cpp
+28 −1 test/gtc/gtc_round.cpp
+1 −0 test/gtx/CMakeLists.txt
+0 −4 test/gtx/gtx_dual_quaternion.cpp
+0 −20 test/gtx/gtx_simd_mat4.cpp
+0 −7 test/gtx/gtx_simd_vec4.cpp
+79 −0 test/gtx/gtx_type_trait.cpp

0 comments on commit 1f1ec27

Please sign in to comment.