MCPcopy Create free account
hub / github.com/comaps/comaps / IndicesRange

Class IndicesRange

libs/drape/vertex_array_buffer.hpp:19–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17class IndexBuffer;
18
19struct 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
29using BuffersMap = std::map<BindingInfo, drape_ptr<DataBuffer>>;
30

Callers 2

RenderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected