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

#include <vec_traits.hpp>

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

    typedef short elem_type;

    // enums

    enum
    {
        cn =3,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ short3
    all(short v);

    static
    __host__ __device__ static __forceinline__ short3
    make(const short* v);

    static
    __host__ __device__ static __forceinline__ short3
    make(
        short x,
        short y,
        short z
        );
};