Skip to content

Commit

Permalink
Merge pull request #125 from taj-ny/correct-support-check
Browse files Browse the repository at this point in the history
correct support check
  • Loading branch information
taj-ny authored Nov 1, 2024
2 parents 4e234be + 6b57c11 commit 411567b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blur.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ bool BlurEffect::supported()
#ifdef KWIN_6_0
return effects->isOpenGLCompositing() && GLFramebuffer::supported() && GLFramebuffer::blitSupported();
#else
return effects->openglContext() && effects->openglContext()->supportsBlits();
return effects->openglContext() && (effects->openglContext()->supportsBlits() || effects->waylandDisplay());
#endif
}

Expand Down

0 comments on commit 411567b

Please sign in to comment.