| 47 | } |
| 48 | |
| 49 | unsigned int IndexBuffer::ComputeCacheMissCount() const |
| 50 | { |
| 51 | IndexMapper mapper(this); |
| 52 | |
| 53 | return Nz::ComputeCacheMissCount(mapper.begin(), m_indexCount); |
| 54 | } |
| 55 | |
| 56 | bool IndexBuffer::Fill(const void* data, UInt32 startIndex, UInt32 length) |
| 57 | { |
nothing calls this directly
no test coverage detected