| 99 | |
| 100 | IndexType IndexBufferType() const { return indexType; } |
| 101 | DXGI_FORMAT IndexBufferFormat() const { return indexType == IndexType::Index32Bit ? DXGI_FORMAT_R32_UINT : DXGI_FORMAT_R16_UINT; } |
| 102 | uint32 IndexSize() const { return indexType == IndexType::Index32Bit ? 4 : 2; } |
| 103 | |
| 104 | const uint8* Vertices() const { return vertices.data(); } |
no outgoing calls
no test coverage detected