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

#include <vec_traits.hpp>

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

    typedef ushort elem_type;

    // enums

    enum
    {
        cn =4,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ ushort4
    all(ushort v);

    static
    __host__ __device__ static __forceinline__ ushort4
    make(const ushort* v);

    static
    __host__ __device__ static __forceinline__ ushort4
    make(
        ushort x,
        ushort y,
        ushort z,
        ushort w
        );
};