Searched defs:Vec4 (Results 1 - 1 of 1) sorted by relevance

/external/mesa3d/include/pixelflinger2/
H A Dpixelflinger2_vector4.h23 template <typename Type> struct Vec4 { struct
38 //Vec4() : x(0), y(0), z(0), w(0) {}
39 Vec4() {} function in struct:Vec4
40 Vec4(Type X, Type Y, Type Z, Type W) : x(X), y(Y), z(Z), w(W) {} function in struct:Vec4
41 Vec4(Type X) : x(X), y(X), z(X), w(X) {} function in struct:Vec4
55 inline void operator += (const Vec4<Type> & rhs) __attribute__((always_inline))
57 inline void operator -= (const Vec4<Type> & rhs) __attribute__((always_inline))
59 inline void operator *= (const Vec4<Type> & rhs) __attribute__((always_inline))
61 inline void operator /= (const Vec4<Type> & rhs) __attribute__((always_inline))
68 inline Vec4 operato
[all...]

Completed in 657 milliseconds