| 17 | class IndexBuffer; |
| 18 | |
| 19 | struct IndicesRange |
| 20 | { |
| 21 | uint32_t m_idxStart; |
| 22 | uint32_t m_idxCount; |
| 23 | |
| 24 | IndicesRange() : m_idxStart(0), m_idxCount(0) {} |
| 25 | IndicesRange(uint32_t idxStart, uint32_t idxCount) : m_idxStart(idxStart), m_idxCount(idxCount) {} |
| 26 | bool IsValid() const { return m_idxCount != 0; } |
| 27 | }; |
| 28 | |
| 29 | using BuffersMap = std::map<BindingInfo, drape_ptr<DataBuffer>>; |
| 30 |
no outgoing calls
no test coverage detected