sdl2-cef icon indicating copy to clipboard operation
sdl2-cef copied to clipboard

Find a bug when SDL_WINDOWEVENT_MINIMIZED the gpu flash is overflow.

Open superowner opened this issue 4 years ago • 0 comments

I just set if (e.window.event == SDL_WINDOWEVENT_MINIMIZED) { cef_renderer_flag = false; } else if (e.window.event == SDL_WINDOWEVENT_RESTORED) { cef_renderer_flag = true; }... ...

   if (!cef_renderer_flag)
    {
        SDL_Delay(100);
        continue;
    }

then it's OK!

superowner avatar Oct 12 '20 11:10 superowner