summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorMax R <max8rr8@gmail.com>2024-02-01 16:14:48 +0300
committerMarge Bot <emma+marge@anholt.net>2024-02-05 16:59:22 +0000
commit67da5a8f08d11b929db3af8b70436065f093fcce (patch)
tree72620fb3cac45e4ea4b781f409a6342c757ae366 /meson_options.txt
parent5ae2b4882a030b2f19a32338705b03b0e348e5ff (diff)
d3d10umd, meson: Allow naming d3d10umd DLLs
For graphics drivers on windows it is beneficial to have usermode DLLs names matching driver overall name, example being vm3dum_10.dll and nvwgf2um.dll for d3d10 usermode drivers from VMWare and Nvidia. To implement that new meson option `gallium-d3d10-dll-name` that names the resulting d3d10umd target DLL is introduced. Additionaly, to avoid confusion `gallium-dll-name` is renamed to `gallium-wgl-dll-name` as it corresponds to the name used in wgl target. Reviewed-by: Jesse Natalie <jenatali@microsoft.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27416>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt12
1 files changed, 10 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index c95b65415a9..ac9ab64e7a0 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -177,14 +177,22 @@ option(
)
option(
- 'gallium-windows-dll-name',
+ 'gallium-wgl-dll-name',
type : 'string',
value : 'libgallium_wgl',
- description : 'name of gallium megadriver DLL built for Windows. ' +
+ description : 'name of gallium wgl target DLL built for Windows. ' +
'defaults to libgallium_wgl.dll to match DRI',
)
option(
+ 'gallium-d3d10-dll-name',
+ type : 'string',
+ value : 'libgallium_d3d10',
+ description : 'name of gallium d3d10 target DLL built for Windows. ' +
+ 'defaults to libgallium_d3d10.dll to match DRI',
+)
+
+option(
'opencl-spirv',
type : 'boolean',
value : false,