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

#include <vec_traits.hpp>

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

    typedef uint elem_type;

    // enums

    enum
    {
        cn =4,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ uint4
    all(uint v);

    static
    __host__ __device__ static __forceinline__ uint4
    make(const uint* v);

    static
    __host__ __device__ static __forceinline__ uint4
    make(
        uint x,
        uint y,
        uint z,
        uint w
        );
};