Skip to content

Commit

Permalink
extern: Bump glm to 1.0.1
Browse files Browse the repository at this point in the history
This should fix warnings on some compilers
  • Loading branch information
zeux committed Nov 26, 2024
1 parent 00fb3d9 commit d7afecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extern/glm
Submodule glm updated 69 files
+42 −0 .github/workflows/make_release.yml
+11 −43 CMakeLists.txt
+ doc/manual/logo-mini.png
+ doc/manual/logo.png
+190 −0 glm/detail/compute_vector_decl.hpp
+17 −6 glm/detail/setup.hpp
+26 −26 glm/detail/type_mat2x2.hpp
+2 −2 glm/detail/type_mat2x2.inl
+24 −24 glm/detail/type_mat2x3.hpp
+2 −2 glm/detail/type_mat2x3.inl
+24 −24 glm/detail/type_mat2x4.hpp
+2 −2 glm/detail/type_mat2x4.inl
+24 −24 glm/detail/type_mat3x2.hpp
+2 −2 glm/detail/type_mat3x2.inl
+26 −26 glm/detail/type_mat3x3.hpp
+2 −2 glm/detail/type_mat3x3.inl
+24 −24 glm/detail/type_mat3x4.hpp
+2 −2 glm/detail/type_mat3x4.inl
+24 −24 glm/detail/type_mat4x2.hpp
+2 −2 glm/detail/type_mat4x2.inl
+24 −24 glm/detail/type_mat4x3.hpp
+2 −2 glm/detail/type_mat4x3.inl
+26 −26 glm/detail/type_mat4x4.hpp
+2 −2 glm/detail/type_mat4x4.inl
+16 −16 glm/detail/type_quat.hpp
+5 −5 glm/detail/type_quat.inl
+30 −30 glm/detail/type_vec1.hpp
+45 −45 glm/detail/type_vec2.hpp
+2 −2 glm/detail/type_vec2.inl
+55 −54 glm/detail/type_vec3.hpp
+2 −2 glm/detail/type_vec3.inl
+59 −59 glm/detail/type_vec4.hpp
+2 −2 glm/detail/type_vec4.inl
+1 −0 glm/ext.hpp
+4 −4 glm/ext/matrix_transform.inl
+1 −0 glm/ext/scalar_ulp.inl
+2 −2 glm/gtc/integer.hpp
+1 −1 glm/gtc/packing.inl
+1 −0 glm/gtx/color_space.inl
+10 −0 glm/gtx/component_wise.hpp
+20 −0 glm/gtx/component_wise.inl
+10 −10 glm/gtx/dual_quaternion.hpp
+12 −12 glm/gtx/euler_angles.hpp
+1 −1 glm/gtx/euler_angles.inl
+26 −26 glm/gtx/io.hpp
+2 −2 glm/gtx/matrix_decompose.hpp
+2 −2 glm/gtx/matrix_factorisation.hpp
+1 −1 glm/gtx/matrix_interpolation.hpp
+0 −1 glm/gtx/number_precision.hpp
+3 −3 glm/gtx/pca.hpp
+1 −1 glm/gtx/string_cast.inl
+2 −2 glm/integer.hpp
+1 −1 glm/simd/common.h
+15 −9 glm/simd/geometric.h
+15 −0 readme.md
+55 −0 test/CMakeLists.txt
+1 −0 test/core/core_force_compiler_unknown.cpp
+37 −0 test/core/core_func_common.cpp
+7 −0 test/core/core_func_geometric.cpp
+2 −0 test/core/core_func_integer_bit_count.cpp
+10 −10 test/core/core_func_integer_find_lsb.cpp
+25 −16 test/core/core_func_matrix.cpp
+2 −2 test/ext/ext_scalar_integer.cpp
+34 −26 test/gtc/gtc_bitfield.cpp
+19 −17 test/gtc/gtc_epsilon.cpp
+1 −1 test/gtc/gtc_round.cpp
+111 −0 test/gtc/gtc_type_aligned.cpp
+0 −1 test/gtx/gtx_color_space.cpp
+66 −0 test/gtx/gtx_component_wise.cpp

0 comments on commit d7afecc

Please sign in to comment.