├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── cross.ini ├── include ├── d3dkmdt.h ├── d3dkmthk.h └── d3dukmdt.h ├── meson.build ├── meson_options.txt ├── src └── d3dkmt-wsl.cpp └── subprojects ├── .gitignore └── DirectX-Headers.wrap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cross.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/cross.ini -------------------------------------------------------------------------------- /include/d3dkmdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/include/d3dkmdt.h -------------------------------------------------------------------------------- /include/d3dkmthk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/include/d3dkmthk.h -------------------------------------------------------------------------------- /include/d3dukmdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/include/d3dukmdt.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/meson_options.txt -------------------------------------------------------------------------------- /src/d3dkmt-wsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/src/d3dkmt-wsl.cpp -------------------------------------------------------------------------------- /subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.wrap 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /subprojects/DirectX-Headers.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/libdxg/HEAD/subprojects/DirectX-Headers.wrap --------------------------------------------------------------------------------