| 34 | namespace |
| 35 | { |
| 36 | struct CompassVertex |
| 37 | { |
| 38 | CompassVertex(glsl::vec2 const & position, glsl::vec2 const & texCoord) : m_position(position), m_texCoord(texCoord) |
| 39 | {} |
| 40 | |
| 41 | glsl::vec2 m_position; |
| 42 | glsl::vec2 m_texCoord; |
| 43 | }; |
| 44 | |
| 45 | class CompassHandle : public TappableHandle |
| 46 | { |