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

/frameworks/base/libs/hwui/
H A DVector.h28 struct Vector2 { struct in namespace:android::uirenderer
40 void operator+=(const Vector2& v) {
45 void operator-=(const Vector2& v) {
70 Vector2 operator+(const Vector2& v) const {
71 return (Vector2){x + v.x, y + v.y};
74 Vector2 operator-(const Vector2& v) const {
75 return (Vector2){x - v.x, y - v.y};
78 Vector2 operato
[all...]

Completed in 171 milliseconds