99 lines
2.3 KiB
C++
99 lines
2.3 KiB
C++
|
// Copyright 2008-2022 Emil Dotchevski and Reverge Studios, Inc.
|
||
|
|
||
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||
|
|
||
|
#ifndef BOOST_QVM_VEC_TRAITS_HPP_INCLUDED
|
||
|
#define BOOST_QVM_VEC_TRAITS_HPP_INCLUDED
|
||
|
|
||
|
#include <boost/qvm/is_scalar.hpp>
|
||
|
#include <boost/qvm/enable_if.hpp>
|
||
|
#include <boost/qvm/config.hpp>
|
||
|
|
||
|
namespace boost { namespace qvm {
|
||
|
|
||
|
template <class V>
|
||
|
struct
|
||
|
vec_traits
|
||
|
{
|
||
|
static int const dim=0;
|
||
|
typedef void scalar_type;
|
||
|
};
|
||
|
|
||
|
template <class T>
|
||
|
struct
|
||
|
is_vec
|
||
|
{
|
||
|
static bool const value = is_scalar<typename vec_traits<T>::scalar_type>::value && vec_traits<T>::dim>0;
|
||
|
};
|
||
|
|
||
|
namespace
|
||
|
qvm_detail
|
||
|
{
|
||
|
template <class T, T>
|
||
|
struct
|
||
|
vtr_dispatch_yes
|
||
|
{
|
||
|
char x, y;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
template <class T>
|
||
|
class
|
||
|
vec_write_element_ref
|
||
|
{
|
||
|
template <class U>
|
||
|
static qvm_detail::vtr_dispatch_yes<typename vec_traits<U>::scalar_type & (*)( U & ), &vec_traits<U>::template write_element<0> > check(int);
|
||
|
|
||
|
template <class>
|
||
|
static char check(long);
|
||
|
|
||
|
public:
|
||
|
|
||
|
static bool const value = sizeof(check<T>(0)) > 1;
|
||
|
};
|
||
|
|
||
|
template <int I, class V>
|
||
|
BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
|
||
|
typename enable_if_c<
|
||
|
vec_write_element_ref<V>::value,
|
||
|
void>::type
|
||
|
write_vec_element( V & v, typename vec_traits<V>::scalar_type s )
|
||
|
{
|
||
|
vec_traits<V>::template write_element<I>(v) = s;
|
||
|
}
|
||
|
|
||
|
template <int I, class V>
|
||
|
BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
|
||
|
typename enable_if_c<
|
||
|
!vec_write_element_ref<V>::value,
|
||
|
void>::type
|
||
|
write_vec_element( V & v, typename vec_traits<V>::scalar_type s )
|
||
|
{
|
||
|
vec_traits<V>::template write_element<I>(v, s);
|
||
|
}
|
||
|
|
||
|
template <class V>
|
||
|
BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
|
||
|
typename enable_if_c<
|
||
|
vec_write_element_ref<V>::value,
|
||
|
void>::type
|
||
|
write_vec_element_idx( int i, V & v, typename vec_traits<V>::scalar_type s )
|
||
|
{
|
||
|
vec_traits<V>::write_element_idx(i, v) = s;
|
||
|
}
|
||
|
|
||
|
template <class V>
|
||
|
BOOST_QVM_CONSTEXPR BOOST_QVM_INLINE_CRITICAL
|
||
|
typename enable_if_c<
|
||
|
!vec_write_element_ref<V>::value,
|
||
|
void>::type
|
||
|
write_vec_element_idx( int i, V & v, typename vec_traits<V>::scalar_type s )
|
||
|
{
|
||
|
vec_traits<V>::write_element_idx(i, v, s);
|
||
|
}
|
||
|
|
||
|
} }
|
||
|
|
||
|
#endif
|