| 62 | } |
| 63 | |
| 64 | void CGraphics_Threaded::DrawSprite(float x, float y, float Size) |
| 65 | { |
| 66 | IGraphics::CQuadItem QuadItem(x, y, Size * m_SpriteScale.x, Size * m_SpriteScale.y); |
| 67 | QuadsDraw(&QuadItem, 1); |
| 68 | } |
| 69 | |
| 70 | void CGraphics_Threaded::DrawSprite(float x, float y, float ScaledWidth, float ScaledHeight) |
| 71 | { |
no outgoing calls
no test coverage detected