MCPcopy Create free account
hub / github.com/CalcProgrammer1/KeyboardVisualizer / Shutdown

Method Shutdown

KeyboardVisualizerCommon/Visualizer.cpp:682–693  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

680}
681
682void 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
695void DrawSolidColor(int bright, RGBColor color, vis_pixels *pixels)
696{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected