| 42 | } |
| 43 | |
| 44 | void startDrawing(vita2d_texture *bg) { |
| 45 | vita2d_start_drawing(); |
| 46 | vita2d_set_clear_color(BACKGROUND_COLOR); |
| 47 | vita2d_clear_screen(); |
| 48 | |
| 49 | if (wallpaper_image) { |
| 50 | vita2d_draw_texture(wallpaper_image, 0.0f, 0.0f); |
| 51 | } else if (bg) { |
| 52 | vita2d_draw_texture(bg, 0.0f, 0.0f); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void endDrawing() { |
| 57 | drawUncommonDialog(); |
no outgoing calls
no test coverage detected