mirror of
https://github.com/icaven/glm.git
synced 2025-12-08 01:36:48 +08:00
1. type_vec4.hpp
__declspec(align(16)) produces a compiler error on VS2012:
func_common.inl(634): error C2719: 'a': formal parameter with
__declspec(align('16')) won't be aligned
core_func_common.cpp(310) : see reference to function template
instantiation 'glm::detail::tvec4<T,P> glm::mix<float,highp>(const
glm::detail::tvec4<T,P> &,const glm::detail::tvec4<T,P>
&,glm::detail::tvec4<bool,highp>)' being compiled
with
[
T=float,
P=highp
]
and a warning on CygWin using gcc 4.7.2:
type_vec4.hpp:40:31: warning: 'align' attribute directive ignored
[-Wattributes]
2. gtx_bit.cpp
glm::uint32 x_max = 1 << 13;
glm::uint32 y_max = 1 << 12;
result out of memory on my machine.
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| gtx_bit.cpp | ||
| gtx_dual_quaternion.cpp | ||
| gtx_gradient_paint.cpp | ||
| gtx_integer.cpp | ||
| gtx_matrix_interpolation.cpp | ||
| gtx_matrix_query.cpp | ||
| gtx_multiple.cpp | ||
| gtx_quaternion.cpp | ||
| gtx_random.cpp | ||
| gtx_rotate_normalized_axis.cpp | ||
| gtx_rotate_vector.cpp | ||
| gtx_scalar_relational.cpp | ||
| gtx_simd_mat4.cpp | ||
| gtx_simd_vec4.cpp | ||
| gtx_string_cast.cpp | ||
| gtx_vector_angle.cpp | ||
| gtx_vector_query.cpp | ||