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

#include <vec_traits.hpp>

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

    typedef ushort elem_type;

    // enums

    enum
    {
        cn =2,
    };

    // methods

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

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

    static
    __host__ __device__ static __forceinline__ ushort2
    make(
        ushort x,
        ushort y
        );
};