Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 411567b

Browse files
authored
Merge pull request #125 from taj-ny/correct-support-check
correct support check
2 parents 4e234be + 6b57c11 commit 411567b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/blur.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ bool BlurEffect::supported()
440440
#ifdef KWIN_6_0
441441
return effects->isOpenGLCompositing() && GLFramebuffer::supported() && GLFramebuffer::blitSupported();
442442
#else
443-
return effects->openglContext() && effects->openglContext()->supportsBlits();
443+
return effects->openglContext() && (effects->openglContext()->supportsBlits() || effects->waylandDisplay());
444444
#endif
445445
}
446446

0 commit comments

Comments
 (0)