Home
last modified time | relevance | path

Searched refs:PVRTVec2 (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTVector.h43 struct PVRTVec2 struct
52 PVRTVec2() : x(0), y(0) {} in PVRTVec2() argument
58 PVRTVec2(VERTTYPE fX, VERTTYPE fY) : x(fX), y(fY) {} in PVRTVec2() function
63 PVRTVec2(VERTTYPE fValue) : x(fValue), y(fValue) {} in PVRTVec2() function
68 PVRTVec2(const VERTTYPE* pVec) : x(pVec[0]), y(pVec[1]) {} in PVRTVec2() function
73 PVRTVec2(const PVRTVec3& v3Vec);
82 PVRTVec2 operator+(const PVRTVec2& rhs) const
84 PVRTVec2 out(*this);
92 PVRTVec2 operator-(const PVRTVec2& rhs) const
94 PVRTVec2 out(*this);
[all …]
DPVRTVector.cpp30 PVRTVec2::PVRTVec2(const PVRTVec3& vec3) in PVRTVec2() function in PVRTVec2