Home
last modified time | relevance | path

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

/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Dvecmath.h61 Vec2(const float fX, const float fY) { in Vec2() argument
62 x_ = fX; in Vec2()
201 void Value(float& fX, float& fY) { in Value() argument
202 fX = x_; in Value()
224 Vec3(const float fX, const float fY, const float fZ) { in Vec3() argument
225 x_ = fX; in Vec3()
398 void Value(float& fX, float& fY, float& fZ) { in Value() argument
399 fX = x_; in Value()
422 Vec4(const float fX, const float fY, const float fZ, const float fW) { in Vec4() argument
423 x_ = fX; in Vec4()
[all …]
Dvecmath.cpp277 Mat4 Mat4::Translation(const float fX, const float fY, const float fZ) { in Translation() argument
282 ret.f_[12] = fX; in Translation()