| 680 | } |
| 681 | |
| 682 | void Visualizer::Shutdown() |
| 683 | { |
| 684 | //Initialize a fade-out by setting shutdown flag to TRUE and resetting timer |
| 685 | shutdown_flag = TRUE; |
| 686 | background_timer = 0; |
| 687 | |
| 688 | //Wait for fade-out to complete before returning |
| 689 | while (running == true) |
| 690 | { |
| 691 | Sleep(50); |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | void DrawSolidColor(int bright, RGBColor color, vis_pixels *pixels) |
| 696 | { |
nothing calls this directly
no outgoing calls
no test coverage detected