| 28 | namespace |
| 29 | { |
| 30 | struct RulerVertex |
| 31 | { |
| 32 | RulerVertex() = default; |
| 33 | RulerVertex(glsl::vec2 const & pos, glsl::vec2 const & normal, glsl::vec2 const & texCoord) |
| 34 | : m_position(pos) |
| 35 | , m_normal(normal) |
| 36 | , m_texCoord(texCoord) |
| 37 | {} |
| 38 | |
| 39 | glsl::vec2 m_position; |
| 40 | glsl::vec2 m_normal; |
| 41 | glsl::vec2 m_texCoord; |
| 42 | }; |
| 43 | |
| 44 | dp::BindingInfo GetBindingInfo() |
| 45 | { |