| 205 | } |
| 206 | |
| 207 | static void drawingFade(float width, float height) |
| 208 | { |
| 209 | if (s_brightnessLevel >= 1.0f) return; |
| 210 | drawingWithColor(((u32)((1-s_brightnessLevel)*255)) << 24); |
| 211 | drawingDrawQuad(0, 0, width, height); |
| 212 | } |
| 213 | |
| 214 | static void drawingTopScreen(float iod) |
| 215 | { |
no test coverage detected