===========================================================================
| 850 | |
| 851 | //=========================================================================== |
| 852 | void PrintTextColor ( const conchar_t *pText, RECT & rRect ) |
| 853 | { |
| 854 | #if !DEBUG_FONT_NO_BACKGROUND_TEXT |
| 855 | FillBackground(rRect.left, rRect.top, rRect.right, rRect.bottom); |
| 856 | #endif |
| 857 | |
| 858 | DebuggerPrintColor( rRect.left, rRect.top, pText ); |
| 859 | } |
| 860 | |
| 861 | //=========================================================================== |
| 862 | void FillBackground(long left, long top, long right, long bottom) |
no test coverage detected