Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Dvecmath.h41 class Vec4; variable
55 friend class Vec4; variable
218 friend class Vec4;
248 Vec3(const Vec4& vec);
411 class Vec4 {
420 Vec4() { x_ = y_ = z_ = w_ = 0.f; } in Vec4() function
422 Vec4(const float fX, const float fY, const float fZ, const float fW) { in Vec4() function
429 Vec4(const Vec4& vec) { in Vec4() function
436 Vec4(const Vec3& vec, const float fW) { in Vec4() function
443 Vec4(const float* pVec) { in Vec4() function
[all …]
Dvecmath.cpp31 Vec3::Vec3(const Vec4& vec) { in Vec3()
40 Vec4 Vec4::operator*(const Mat4& rhs) const { in operator *()
41 Vec4 out; in operator *()
104 Vec4 Mat4::operator*(const Vec4& rhs) const { in operator *()
105 Vec4 ret; in operator *()