From: Matteo Bruni mbruni@codeweavers.com
Share the code with the existing d3dx9_36 tests. --- configure | 1 + configure.ac | 1 + dlls/d3dx9_42/tests/Makefile.in | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 dlls/d3dx9_42/tests/Makefile.in
diff --git a/configure b/configure index eddfea0379f..90b41de54be 100755 --- a/configure +++ b/configure @@ -22276,6 +22276,7 @@ wine_fn_config_makefile dlls/d3dx9_39 enable_d3dx9_39 wine_fn_config_makefile dlls/d3dx9_40 enable_d3dx9_40 wine_fn_config_makefile dlls/d3dx9_41 enable_d3dx9_41 wine_fn_config_makefile dlls/d3dx9_42 enable_d3dx9_42 +wine_fn_config_makefile dlls/d3dx9_42/tests enable_tests wine_fn_config_makefile dlls/d3dx9_43 enable_d3dx9_43 wine_fn_config_makefile dlls/d3dx9_43/tests enable_tests wine_fn_config_makefile dlls/d3dxof enable_d3dxof diff --git a/configure.ac b/configure.ac index cf698988a7b..3012a4d7b5b 100644 --- a/configure.ac +++ b/configure.ac @@ -2570,6 +2570,7 @@ WINE_CONFIG_MAKEFILE(dlls/d3dx9_39) WINE_CONFIG_MAKEFILE(dlls/d3dx9_40) WINE_CONFIG_MAKEFILE(dlls/d3dx9_41) WINE_CONFIG_MAKEFILE(dlls/d3dx9_42) +WINE_CONFIG_MAKEFILE(dlls/d3dx9_42/tests) WINE_CONFIG_MAKEFILE(dlls/d3dx9_43) WINE_CONFIG_MAKEFILE(dlls/d3dx9_43/tests) WINE_CONFIG_MAKEFILE(dlls/d3dxof) diff --git a/dlls/d3dx9_42/tests/Makefile.in b/dlls/d3dx9_42/tests/Makefile.in new file mode 100644 index 00000000000..050c4a28cf9 --- /dev/null +++ b/dlls/d3dx9_42/tests/Makefile.in @@ -0,0 +1,18 @@ +TESTDLL = d3dx9_42.dll +IMPORTS = d3dx9_42 d3d9 user32 gdi32 +EXTRADEFS = -DD3DX_SDK_VERSION=42 +PARENTSRC = ../../d3dx9_36/tests + +SOURCES = \ + asm.c \ + core.c \ + effect.c \ + line.c \ + math.c \ + mesh.c \ + rsrc.rc \ + shader.c \ + surface.c \ + texture.c \ + volume.c \ + xfile.c