| 205 | } |
| 206 | |
| 207 | void UniversalBatch::FlushData(ref_ptr<GraphicsContext> context, ref_ptr<AttributeProvider> streams, |
| 208 | uint32_t vertexCount) const |
| 209 | { |
| 210 | for (uint8_t i = 0; i < streams->GetStreamCount(); ++i) |
| 211 | FlushData(context, streams->GetBindingInfo(i), streams->GetRawPointer(i), vertexCount); |
| 212 | } |
| 213 | |
| 214 | void UniversalBatch::FlushData(ref_ptr<GraphicsContext> context, BindingInfo const & info, void const * data, |
| 215 | uint32_t elementCount) const |
nothing calls this directly
no test coverage detected