| 312 | /* ----- Drawing ----- */ |
| 313 | |
| 314 | void CommandBuffer::Draw(unsigned int numVertices, unsigned int firstVertex) |
| 315 | { |
| 316 | native_->Draw(numVertices, firstVertex); |
| 317 | } |
| 318 | |
| 319 | void CommandBuffer::DrawIndexed(unsigned int numIndices, unsigned int firstIndex) |
| 320 | { |
no outgoing calls