| 721 | } |
| 722 | |
| 723 | void SurfaceGDI::RectangleDraw(PRectangle rc, ColourDesired fore, ColourDesired back) { |
| 724 | PenColour(fore); |
| 725 | BrushColor(back); |
| 726 | ::Rectangle(hdc, rc.left, rc.top, rc.right, rc.bottom); |
| 727 | } |
| 728 | |
| 729 | void SurfaceGDI::FillRectangle(PRectangle rc, ColourDesired back) { |
| 730 | // Using ExtTextOut rather than a FillRect ensures that no dithering occurs. |
no test coverage detected