You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On AMD RDNA4 GPUs (Mesa radv still marks gfx1200 non-conformant), the Buzz Desktop window is invisible/transparent: the window opens, but the webview never paints (or paints one frame and then permanently stops repainting after any move/minimize). Because the Tauri window is configured with "transparent": true (desktop/src-tauri/tauri.conf.json), the failure presents as a ghost window — desktop wallpaper visible through a Buzz-shaped frame, titlebar rendered normally.
The root cause is not the dmabuf renderer issue from #2338 (that workaround does not help here). WebKitGTK 2.52 renders via Skia, and on this GPU Skia's GPU path goes through Vulkan/radv, which self-reports:
WARNING: radv is not a conformant Vulkan implementation, testing use only.
Forcing Skia to CPU rasterization fully fixes rendering:
WEBKIT_SKIA_ENABLE_CPU_RENDERING=1
To Reproduce
Machine with an AMD RDNA4 GPU (tested: RX 9060 XT / gfx1200), Mesa 26.1.2, KDE Plasma 6.6.5 (Wayland session)
Window opens; content area is transparent (or paints the page background once, then goes permanently transparent after moving/minimizing the window)
Relaunch with WEBKIT_SKIA_ENABLE_CPU_RENDERING=1 → full UI renders correctly and survives move/minimize
Expected behavior
The window should render its content, or fall back to a rendering path that works instead of an invisible window.
Supporting Material
Isolation matrix (all on the same machine/session):
Configuration
Result
Default (XWayland, GDK_BACKEND=x11 from AppRun hook)
transparent
WEBKIT_DISABLE_DMABUF_RENDERER=1 (the #2338 workaround)
WebKitWebProcess stays alive, still transparent
GDK_BACKEND=wayland (native Wayland; no eglMakeCurrent failure on AMD, unlike tauri#8541 on Intel)
transparent
LIBGL_ALWAYS_SOFTWARE=1
transparent (expected in hindsight — Skia uses Vulkan here, not GL)
WEBKIT_SKIA_ENABLE_CPU_RENDERING=1
renders correctly
Notes:
Reproduces identically with the bundled WebKitGTK (0.4.23 AppImage) and the system WebKitGTK 2.52.4 (from-source just dev), on both X11 and native Wayland — so it is not an AppImage packaging problem; it is the Skia GPU path on this GPU generation.
WebKitWebProcess and WebKitNetworkProcess run normally throughout; frontend JS executes (Vite client console messages come through in dev). Only painting is broken.
WebKitGTK: bundled (0.4.23 AppImage) and system 2.52.4-1 — both affected
Buzz: 0.4.23 AppImage and from-source at current main — both affected
Additional context
Suggested mitigations, in increasing order of effort:
Document WEBKIT_SKIA_ENABLE_CPU_RENDERING=1 as a known workaround for AMD GPUs that radv flags non-conformant (currently RDNA4).
Set it conditionally in the AppRun hook when radv reports a non-conformant device (or expose a --safe-rendering launch flag).
Reconsider unconditional "transparent": true on the main window — when the webview fails to paint for any reason, transparency turns a diagnosable "blank window" into a confusing invisible app. An opaque fallback background would make every rendering bug in this class far more user-debuggable.
Happy to test patches on this hardware.
Related: #2338 (different root cause, same symptom neighborhood), #2335 (libsystemd fix needed first to even launch the AppImage on Arch).
Describe the bug
On AMD RDNA4 GPUs (Mesa
radvstill marks gfx1200 non-conformant), the Buzz Desktop window is invisible/transparent: the window opens, but the webview never paints (or paints one frame and then permanently stops repainting after any move/minimize). Because the Tauri window is configured with"transparent": true(desktop/src-tauri/tauri.conf.json), the failure presents as a ghost window — desktop wallpaper visible through a Buzz-shaped frame, titlebar rendered normally.The root cause is not the dmabuf renderer issue from #2338 (that workaround does not help here). WebKitGTK 2.52 renders via Skia, and on this GPU Skia's GPU path goes through Vulkan/
radv, which self-reports:Forcing Skia to CPU rasterization fully fixes rendering:
To Reproduce
fix-appimage.shdoesn't remove bundledlibsystemd.so.0— AppImage crashes on distros with newer systemd (Arch, Fedora 41+, etc.) #2335 libsystemd fix, or a from-sourcejust devbuild using system webkit2gtk-4.1 2.52.4 — both reproduce)WEBKIT_SKIA_ENABLE_CPU_RENDERING=1→ full UI renders correctly and survives move/minimizeExpected behavior
The window should render its content, or fall back to a rendering path that works instead of an invisible window.
Supporting Material
Isolation matrix (all on the same machine/session):
GDK_BACKEND=x11from AppRun hook)WEBKIT_DISABLE_DMABUF_RENDERER=1(the #2338 workaround)GDK_BACKEND=wayland(native Wayland; noeglMakeCurrentfailure on AMD, unlike tauri#8541 on Intel)LIBGL_ALWAYS_SOFTWARE=1WEBKIT_SKIA_ENABLE_CPU_RENDERING=1Notes:
just dev), on both X11 and native Wayland — so it is not an AppImage packaging problem; it is the Skia GPU path on this GPU generation.WebKitWebProcessandWebKitNetworkProcessrun normally throughout; frontend JS executes (Vite client console messages come through in dev). Only painting is broken.dmabufrenderer core dump #2338 (Intel: core dump, fixed by disabling dmabuf; RDNA4: silent no-paint, dmabuf var irrelevant).Environment
Additional context
Suggested mitigations, in increasing order of effort:
WEBKIT_SKIA_ENABLE_CPU_RENDERING=1as a known workaround for AMD GPUs that radv flags non-conformant (currently RDNA4).--safe-renderinglaunch flag)."transparent": trueon the main window — when the webview fails to paint for any reason, transparency turns a diagnosable "blank window" into a confusing invisible app. An opaque fallback background would make every rendering bug in this class far more user-debuggable.Happy to test patches on this hardware.
Related: #2338 (different root cause, same symptom neighborhood), #2335 (libsystemd fix needed first to even launch the AppImage on Arch).