| 216 | } |
| 217 | |
| 218 | void CGraphics_Threaded::GetScreen(float *pTopLeftX, float *pTopLeftY, float *pBottomRightX, float *pBottomRightY) const |
| 219 | { |
| 220 | *pTopLeftX = m_State.m_ScreenTL.x; |
| 221 | *pTopLeftY = m_State.m_ScreenTL.y; |
| 222 | *pBottomRightX = m_State.m_ScreenBR.x; |
| 223 | *pBottomRightY = m_State.m_ScreenBR.y; |
| 224 | } |
| 225 | |
| 226 | void CGraphics_Threaded::LinesBegin() |
| 227 | { |
no outgoing calls
no test coverage detected