|
@@ -341,9 +341,23 @@ namespace detail
|
|
|
|
|
|
|
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
|
# if !GLM_HAS_DEFAULTED_FUNCTIONS
|
|
|
template <>
|
|
template <>
|
|
|
- GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec4<float, simd>::tvec4()
|
|
|
|
|
|
|
+ GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec4<float, aligned_lowp>::tvec4()
|
|
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
|
# ifndef GLM_FORCE_NO_CTOR_INIT
|
|
|
: data(_mm_setzero_ps())
|
|
: data(_mm_setzero_ps())
|
|
|
|
|
+# endif
|
|
|
|
|
+ {}
|
|
|
|
|
+
|
|
|
|
|
+ template <>
|
|
|
|
|
+ GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec4<float, aligned_mediump>::tvec4()
|
|
|
|
|
+# ifndef GLM_FORCE_NO_CTOR_INIT
|
|
|
|
|
+ : data(_mm_setzero_ps())
|
|
|
|
|
+# endif
|
|
|
|
|
+ {}
|
|
|
|
|
+
|
|
|
|
|
+ template <>
|
|
|
|
|
+ GLM_FUNC_QUALIFIER GLM_CONSTEXPR_CTOR tvec4<float, aligned_highp>::tvec4()
|
|
|
|
|
+# ifndef GLM_FORCE_NO_CTOR_INIT
|
|
|
|
|
+ : data(_mm_setzero_ps())
|
|
|
# endif
|
|
# endif
|
|
|
{}
|
|
{}
|
|
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|
|
# endif//!GLM_HAS_DEFAULTED_FUNCTIONS
|