Unfortunately, with a notebook GPU, and a Quadro at that, you may find driver support to be slow. However, it would appear that the latest available driver for the Quadro M2000M is in fact a WDDM 3.1 driver. Maybe upgrading the driver is enough.
WSLg is supposedly available on Windows 10. I recommend you ask a new question specifically about getting it to work, with the exact steps you performed and the exact error messages you encountered. Make sure to check the official guide.
WDDM (Windows Display Driver Model) is an interface between the graphics driver and the operating system. It is not a hardware property (WDDM 2.7 is already 5 years more recent than your GPU) and a driver is not necessarily using the latest version.
You can read about how the driver signals this version here:
[…] To be consistent with the prevailing file versioning requirements for legacy operating systems, file version formatting must follow an AA.BB.CCCCC.DDDDD pattern where:
- AA indicates the driver model version of the most capable device listed in the .inf
- […]
[…]
Values for AA field:
| Driver Model |
AA value |
| WDDM v2.1 |
21 |
| WDDM v2.0 |
20 |
| WDDM v1.3 |
10 |
| WDDM v1.2 |
9 |
| WDDM v1.1 |
8 |
| WDDM v1.0 |
7 |
| XDDM |
6 |
More recent versions are unfortunately not listed. However, on Windows 11 with WDDM 3.1 (according to dxdiag), I have major version 31, so its probably just following the scheme.
What the driver uses and what the operating system supports can differ. There’s probably more sophisticated negotiation when the driver is initialized.