Searched defs:SkV4 (Results 1 – 1 of 1) sorted by relevance
94 struct SK_API SkV4 { struct97 bool operator==(const SkV4& v) const { argument102 static SkScalar Dot(const SkV4& a, const SkV4& b) { in Dot() argument105 static SkV4 Normalize(const SkV4& v) { return v * (1.0f / v.length()); } in Normalize() argument122 SkScalar dot(const SkV4& v) const { return Dot(*this, v); } in dot() argument123 SkV4 normalize() const { return Normalize(*this); } in normalize() argument125 const float* ptr() const { return &x; } in ptr()126 float* ptr() { return &x; } in ptr()