feature: Get initial 3D working

This commit is contained in:
Tera << 8 2025-06-10 11:27:27 -04:00
parent 13cd47e35f
commit 79c7846ecd
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
8 changed files with 253 additions and 8 deletions

View file

@ -72,7 +72,7 @@ def fetch_xr_glass_edid(allow_unsupported_devices) -> EvdiDisplaySpec:
max_refresh = int(manufacturer_supported_devices[edid.name]["max_refresh"])
return EvdiDisplaySpec(raw_edid_file, max_width, max_height, max_refresh, card_device, monitor.replace(f"{card_device}-", ""))
return EvdiDisplaySpec(raw_edid_file, edid.manufacturer_pnp_id, max_width, max_height, max_refresh, card_device, monitor.replace(f"{card_device}-", ""))
raise ValueError("Could not find supported device. Check if the device is plugged in. If it is plugged in and working correctly, check the README or open an issue.")