[vlc-commits] [Git][videolan/vlc][master] qml: early return in `DualKawaseBlur::scheduleUpdate()` without rhi
Steve Lhomme (@robUx4)
gitlab at videolan.org
Tue Oct 7 04:57:52 UTC 2025
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
d0bd0af4 by Fatih Uzunoglu at 2025-10-07T04:42:47+00:00
qml: early return in `DualKawaseBlur::scheduleUpdate()` without rhi
Without rhi the effect is not available, so we can early return here.
- - - - -
1 changed file:
- modules/gui/qt/widgets/qml/DualKawaseBlur.qml
Changes:
=====================================
modules/gui/qt/widgets/qml/DualKawaseBlur.qml
=====================================
@@ -114,6 +114,9 @@ Item {
if (live)
return // no-op
+ if (root.GraphicsInfo.shaderType !== GraphicsInfo.RhiShader)
+ return // not applicable
+
if (!root.sourceTextureIsValid) {
root._queuedScheduledUpdate = true // if source texture is not valid, delay the update until valid
return
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d0bd0af4b16695e36dde234c75df7927642aa40c
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/d0bd0af4b16695e36dde234c75df7927642aa40c
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list