Home
last modified time | relevance | path

Searched defs: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() argument
68 PVRTVec2(const VERTTYPE* pVec) : x(pVec[0]), y(pVec[1]) {} in PVRTVec2() argument
268 PVRTVec2 normalize() in normalize() argument
279 PVRTVec2 normalized() const in normalized() argument
290 PVRTVec2 rotated90() const in rotated90() argument
301 VERTTYPE dot(const PVRTVec2& rhs) const in dot() argument
312 VERTTYPE *ptr() { return (VERTTYPE*)this; } in ptr()
DPVRTVector.cpp30 PVRTVec2::PVRTVec2(const PVRTVec3& vec3) in PVRTVec2() function in PVRTVec2