template struct cv::cudev::VecTraits<char3>

#include <vec_traits.hpp>

template <>
struct VecTraits<char3>
{
    // typedefs

    typedef schar elem_type;

    // enums

    enum
    {
        cn =3,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ char3
    all(schar v);

    static
    __host__ __device__ static __forceinline__ char3
    make(
        schar x,
        schar y,
        schar z
        );

    static
    __host__ __device__ static __forceinline__ char3
    make(const schar* v);
};