| 267 | } |
| 268 | |
| 269 | void CGraphics_Threaded::LinesBatchEnd(CLineItemBatch *pBatch) |
| 270 | { |
| 271 | if(pBatch->m_NumItems > 0) |
| 272 | { |
| 273 | LinesDraw(pBatch->m_aItems, pBatch->m_NumItems); |
| 274 | pBatch->m_NumItems = 0; |
| 275 | } |
| 276 | LinesEnd(); |
| 277 | } |
| 278 | |
| 279 | void CGraphics_Threaded::LinesBatchDraw(CLineItemBatch *pBatch, const CLineItem *pArray, size_t Num) |
| 280 | { |
no outgoing calls
no test coverage detected