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

/frameworks/base/libs/hwui/
H A DVector.h31 struct Vector2 { struct in namespace:android::uirenderer
43 void operator+=(const Vector2& v) {
48 void operator-=(const Vector2& v) {
73 Vector2 operator+(const Vector2& v) const {
74 return (Vector2){x + v.x, y + v.y};
77 Vector2 operator-(const Vector2& v) const {
78 return (Vector2){x - v.x, y - v.y};
81 Vector2 operato
[all...]

Completed in 946 milliseconds