mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-08 09:18:43 +00:00
Don't rasterize layers in fullscreen
The original artifacting bug didn't manifest in fullscreen anyway.
This commit is contained in:
parent
a97f6d90f4
commit
47d1eff45d
1 changed files with 1 additions and 1 deletions
|
@ -466,7 +466,7 @@ public:
|
|||
//
|
||||
// https://github.com/moonlight-stream/moonlight-qt/issues/493
|
||||
// https://github.com/moonlight-stream/moonlight-qt/issues/722
|
||||
if (!(params->videoFormat & VIDEO_FORMAT_MASK_10BIT)) {
|
||||
if (!(params->videoFormat & VIDEO_FORMAT_MASK_10BIT) && (SDL_GetWindowFlags(params->window) & SDL_WINDOW_FULLSCREEN_DESKTOP) != SDL_WINDOW_FULLSCREEN) {
|
||||
int err;
|
||||
uint32_t cpuType;
|
||||
size_t size = sizeof(cpuType);
|
||||
|
|
Loading…
Reference in a new issue