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

#include <vec_traits.hpp>

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

    typedef int elem_type;

    // enums

    enum
    {
        cn =2,
    };

    // methods

    static
    __host__ __device__ static __forceinline__ int2
    all(int v);

    static
    __host__ __device__ static __forceinline__ int2
    make(const int* v);

    static
    __host__ __device__ static __forceinline__ int2
    make(
        int x,
        int y
        );
};