| 2600 | } |
| 2601 | |
| 2602 | static void SimpleAlphaRectangle ( Surface *surface, PRectangle rc, ColourDesired fill, int alpha ) |
| 2603 | { |
| 2604 | if ( alpha != SC_ALPHA_NOALPHA ) { |
| 2605 | surface->AlphaRectangle ( rc, 0, fill, alpha, fill, alpha, 0 ); |
| 2606 | } |
| 2607 | } |
| 2608 | |
| 2609 | void DrawTextBlob ( Surface *surface, ViewStyle &vsDraw, PRectangle rcSegment, |
| 2610 | const char *s, ColourDesired textBack, ColourDesired textFore, bool twoPhaseDraw ) |
no test coverage detected