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

#include <vec_traits.hpp>

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

    typedef short elem_type;

    // enums

    enum
    {
        cn =4,
    };

    // methods

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

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

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