Home
last modified time | relevance | path

Searched refs:Vec2 (Results 1 – 3 of 3) sorted by relevance

/tools/test/graphicsbenchmark/apps/sample_app/src/cpp/
Dvecmath.h39 class Vec2; variable
48 class Vec2 {
59 Vec2() { x_ = y_ = 0.f; } in Vec2() function
61 Vec2(const float fX, const float fY) { in Vec2() function
66 Vec2(const Vec2& vec) { in Vec2() function
71 Vec2(const float* pVec) { in Vec2() function
77 Vec2 operator*(const Vec2& rhs) const {
78 Vec2 ret;
84 Vec2 operator/(const Vec2& rhs) const {
85 Vec2 ret;
[all …]
Drenderer.cpp156 v = Vec2( in initDisplay()
184 Vec2& v = state.velocities[i]; in update()
201 v = Vec2(vx, vy); in update()
Drenderer.h48 std::vector<Vec2> velocities;