Home | History | Annotate | Download | only in glshared

Lines Matching refs:Vec2

55 using tcu::Vec2;
140 static inline float triangleArea (const Vec2& a, const Vec2& b, const Vec2& c)
142 const Vec2 ab = b-a;
143 const Vec2 ac = c-a;
340 "attribute highp vec2 a_pos;\n"
1048 const float triArea = triangleArea(Vec2(vtxAComps[0], vtxAComps[1]),
1049 Vec2(vtxBComps[0], vtxBComps[1]),
1050 Vec2(vtxCComps[0], vtxCComps[1]));