Figma
Fix WebGL error under Wayland
Two Options. Edit ~/.config/figma-linux/settings.json → app.commandSwitches.
A. Vulkan (issue #206) — try first:
{ "switch": "enable-features", "value": "Vulkan" }B. X11 + ANGLE-over-GL — if Vulkan can’t enumerate (hybrid GPU, e.g. Iris Xe + Arc):
{ "switch": "ozone-platform", "value": "x11" },
{ "switch": "use-gl", "value": "angle" },
{ "switch": "use-angle", "value": "gl" },
{ "switch": "ignore-gpu-blocklist" }X11 avoids the Wayland dmabuf path that fails on hybrid GPUs; ANGLE-over-GL gives hardware acceleration.