| 476 | // @formatter:on |
| 477 | |
| 478 | bool CanBatchDrawCalls(const Render2DDrawCall& d1, const Render2DDrawCall& d2) |
| 479 | { |
| 480 | return d1.Type == d2.Type && CanDrawCallBatch[(int32)d1.Type](d1, d2); |
| 481 | } |
| 482 | |
| 483 | void DrawBatch(int32 startIndex, int32 count); |
| 484 |