On Mon Jul 31 07:28:48 2023 +0000, Zhiyi Zhang wrote:
If DriverVersion is not really related to vendors, then I think it would be enough to pick the highest "31.*" version and then use it for all vendors. I thought they would have different versions.
DriverVersion is related to vendors, sometimes. Here is an example of a rare case: ```C if (vendor == 0x10de && driverVersion >= 9999) { enable_cool_rtx_stuff();} ``` Proton or DXVK should be able to fix it.