Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions crates/viewer/re_renderer/src/device_caps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,8 +475,7 @@ pub fn default_backends() -> wgpu::Backends {
// For changing the backend we use standard wgpu env var, i.e. WGPU_BACKEND.
wgpu::Backends::from_env()
.unwrap_or(wgpu::Backends::VULKAN | wgpu::Backends::METAL | wgpu::Backends::GL)
} else if is_safari_browser() || is_firefox_browser() {
// TODO(#8559): Fix WebGPU on Safari
} else if is_firefox_browser() {
// TODO(#11009): Fix videos on WebGPU firefox
wgpu::Backends::GL
} else {
Expand Down
Loading