diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-12 08:05:34 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-12 08:05:34 -0400 |
commit | ee4522669875b694911635b0c6cfbde7003ef040 (patch) | |
tree | 7841fd9bb0bd29798d31e9fe819ab4ededba67d3 /include/glm/detail/_vectorize.hpp | |
parent | 5432b278f8ed8c9aaeccf1ee7a4da540787f965d (diff) | |
parent | cab9a8f66e683d79b67a1a4d78b6e68009642534 (diff) |
RENDERING
Diffstat (limited to 'include/glm/detail/_vectorize.hpp')
-rw-r--r-- | include/glm/detail/_vectorize.hpp | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/include/glm/detail/_vectorize.hpp b/include/glm/detail/_vectorize.hpp new file mode 100644 index 0000000..a08ed34 --- /dev/null +++ b/include/glm/detail/_vectorize.hpp @@ -0,0 +1,131 @@ +/// @ref core +/// @file glm/detail/_vectorize.hpp + +#pragma once + +#include "type_vec1.hpp" +#include "type_vec2.hpp" +#include "type_vec3.hpp" +#include "type_vec4.hpp" + +namespace glm{ +namespace detail +{ + template <typename R, typename T, precision P, template <typename, precision> class vecType> + struct functor1{}; + + template <typename R, typename T, precision P> + struct functor1<R, T, P, tvec1> + { + GLM_FUNC_QUALIFIER static tvec1<R, P> call(R (*Func) (T x), tvec1<T, P> const & v) + { + return tvec1<R, P>(Func(v.x)); + } + }; + + template <typename R, typename T, precision P> + struct functor1<R, T, P, tvec2> + { + GLM_FUNC_QUALIFIER static tvec2<R, P> call(R (*Func) (T x), tvec2<T, P> const & v) + { + return tvec2<R, P>(Func(v.x), Func(v.y)); + } + }; + + template <typename R, typename T, precision P> + struct functor1<R, T, P, tvec3> + { + GLM_FUNC_QUALIFIER static tvec3<R, P> call(R (*Func) (T x), tvec3<T, P> const & v) + { + return tvec3<R, P>(Func(v.x), Func(v.y), Func(v.z)); + } + }; + + template <typename R, typename T, precision P> + struct functor1<R, T, P, tvec4> + { + GLM_FUNC_QUALIFIER static tvec4<R, P> call(R (*Func) (T x), tvec4<T, P> const & v) + { + return tvec4<R, P>(Func(v.x), Func(v.y), Func(v.z), Func(v.w)); + } + }; + + template <typename T, precision P, template <typename, precision> class vecType> + struct functor2{}; + + template <typename T, precision P> + struct functor2<T, P, tvec1> + { + GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, tvec1<T, P> const & b) + { + return tvec1<T, P>(Func(a.x, b.x)); + } + }; + + template <typename T, precision P> + struct functor2<T, P, tvec2> + { + GLM_FUNC_QUALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, tvec2<T, P> const & b) + { + return tvec2<T, P>(Func(a.x, b.x), Func(a.y, b.y)); + } + }; + + template <typename T, precision P> + struct functor2<T, P, tvec3> + { + GLM_FUNC_QUALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, tvec3<T, P> const & b) + { + return tvec3<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z)); + } + }; + + template <typename T, precision P> + struct functor2<T, P, tvec4> + { + GLM_FUNC_QUALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, tvec4<T, P> const & b) + { + return tvec4<T, P>(Func(a.x, b.x), Func(a.y, b.y), Func(a.z, b.z), Func(a.w, b.w)); + } + }; + + template <typename T, precision P, template <typename, precision> class vecType> + struct functor2_vec_sca{}; + + template <typename T, precision P> + struct functor2_vec_sca<T, P, tvec1> + { + GLM_FUNC_QUALIFIER static tvec1<T, P> call(T (*Func) (T x, T y), tvec1<T, P> const & a, T b) + { + return tvec1<T, P>(Func(a.x, b)); + } + }; + + template <typename T, precision P> + struct functor2_vec_sca<T, P, tvec2> + { + GLM_FUNC_QUALIFIER static tvec2<T, P> call(T (*Func) (T x, T y), tvec2<T, P> const & a, T b) + { + return tvec2<T, P>(Func(a.x, b), Func(a.y, b)); + } + }; + + template <typename T, precision P> + struct functor2_vec_sca<T, P, tvec3> + { + GLM_FUNC_QUALIFIER static tvec3<T, P> call(T (*Func) (T x, T y), tvec3<T, P> const & a, T b) + { + return tvec3<T, P>(Func(a.x, b), Func(a.y, b), Func(a.z, b)); + } + }; + + template <typename T, precision P> + struct functor2_vec_sca<T, P, tvec4> + { + GLM_FUNC_QUALIFIER static tvec4<T, P> call(T (*Func) (T x, T y), tvec4<T, P> const & a, T b) + { + return tvec4<T, P>(Func(a.x, b), Func(a.y, b), Func(a.z, b), Func(a.w, b)); + } + }; +}//namespace detail +}//namespace glm |