Skip to content
Open
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
4 changes: 2 additions & 2 deletions usr/lib/linuxmint/mintreport/gpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ def detect_vulkan_acceleration():
for gpu in gpus:
if not gpu.strip():
continue
# Ignore software drivers like lavapipe
if re.search(r"lavapipe", gpu, re.IGNORECASE):
# Ignore software drivers like llvmpipe
if re.search(r"lavapipe|llvmpipe", gpu, re.IGNORECASE):
continue
# If we find a valid hardware vendor/device ID
if re.search(r"vendorID\s*=\s*0x[0-9a-f]+", gpu, re.IGNORECASE):
Expand Down