| 34 | }; |
| 35 | |
| 36 | struct VertexData { |
| 37 | Vec3f pos; |
| 38 | Vec4f col; |
| 39 | Vec2f tex; |
| 40 | Vec3f norm; |
| 41 | |
| 42 | VertexData() {} |
| 43 | VertexData(Vec3f pos, Vec4f col, Vec2f tex, Vec3f norm) |
| 44 | : pos(pos), col(col), tex(tex), norm(norm) {} |
| 45 | |
| 46 | bool operator==(const VertexData& other) { |
| 47 | return pos == other.pos; |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | struct Image; |
| 52 | struct SDL_Window; |
nothing calls this directly
no outgoing calls
no test coverage detected