| 334 | } |
| 335 | |
| 336 | void VertexArrayBuffer::UploadIndices(ref_ptr<GraphicsContext> context, void const * data, uint32_t count) |
| 337 | { |
| 338 | CHECK_LESS_OR_EQUAL(count, GetIndexBuffer()->GetAvailableSize(), ()); |
| 339 | GetIndexBuffer()->UploadData(context, data, count); |
| 340 | } |
| 341 | |
| 342 | void VertexArrayBuffer::ApplyMutation(ref_ptr<GraphicsContext> context, ref_ptr<IndexBufferMutator> indexMutator, |
| 343 | ref_ptr<AttributeBufferMutator> attrMutator) |
no test coverage detected