|
|
|
@ -722,7 +722,7 @@ namespace glm |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
|
GLM_FUNC_DECL tvec4<T, P> operator-(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
GLM_FUNC_QUALIFIER tvec4<T, P> operator-(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
{ |
|
|
|
|
return tvec4<T, P>( |
|
|
|
|
v1.x - v2.x, |
|
|
|
@ -772,7 +772,7 @@ namespace glm |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
|
GLM_FUNC_DECL tvec4<T, P> operator*(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
GLM_FUNC_QUALIFIER tvec4<T, P> operator*(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
{ |
|
|
|
|
return tvec4<T, P>( |
|
|
|
|
v1.x * v2.x, |
|
|
|
@ -822,7 +822,7 @@ namespace glm |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
template <typename T, precision P> |
|
|
|
|
GLM_FUNC_DECL tvec4<T, P> operator/(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
GLM_FUNC_QUALIFIER tvec4<T, P> operator/(tvec1<T, P> const & v1, tvec4<T, P> const & v2) |
|
|
|
|
{ |
|
|
|
|
return tvec4<T, P>( |
|
|
|
|
v1.x / v2.x, |
|
|
|
|