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

#include <vec_traits.hpp>

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

    typedef schar elem_type;

    // enums

    enum
    {
        cn =4,
    };

    // methods

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

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

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