| 1653 | } |
| 1654 | |
| 1655 | void CGraphics_Threaded::DeleteQuadContainer(int &ContainerIndex) |
| 1656 | { |
| 1657 | if(ContainerIndex == -1) |
| 1658 | return; |
| 1659 | |
| 1660 | QuadContainerReset(ContainerIndex); |
| 1661 | |
| 1662 | // also clear the container index |
| 1663 | m_vQuadContainers[ContainerIndex].m_FreeIndex = m_FirstFreeQuadContainer; |
| 1664 | m_FirstFreeQuadContainer = ContainerIndex; |
| 1665 | ContainerIndex = -1; |
| 1666 | } |
| 1667 | |
| 1668 | void CGraphics_Threaded::RenderQuadContainer(int ContainerIndex, int QuadDrawNum) |
| 1669 | { |
no outgoing calls
no test coverage detected