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

#include <vec_traits.hpp>

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

    typedef ushort elem_type;

    // enums

    enum
    {
        cn =3,
    };

    // methods

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

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

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