| 92 | } |
| 93 | |
| 94 | void SubmitStaticVertex(glsl::vec3 const & pivot, glsl::vec2 const & normal, float side, float offsetFromStart, |
| 95 | glsl::vec4 const & texCoord, std::vector<TrafficStaticVertex> & staticGeom) |
| 96 | { |
| 97 | staticGeom.emplace_back(pivot, TrafficStaticVertex::TNormal(normal, side, offsetFromStart), texCoord); |
| 98 | } |
| 99 | |
| 100 | void SubmitCircleStaticVertices(RoadClass roadClass, glsl::vec3 const & pivot, glsl::vec2 const & rightNormal, |
| 101 | glsl::vec2 const & uv, std::vector<TrafficCircleStaticVertex> & circlesGeometry) |
no test coverage detected