On 5/15/19 10:14 PM, Józef Kucia wrote:
On Wed, May 15, 2019 at 3:45 PM Zhiyi Zhang zzhang@codeweavers.com wrote:
Mostly to show that D3DKMTCheckOcclusion is mainly composed of ownership checks rather than actually window occlusion. Also composition status doesn't affect its behavior despite MSDN say so.
Signed-off-by: Zhiyi Zhang zzhang@codeweavers.com
dlls/gdi32/tests/Makefile.in | 2 +- dlls/gdi32/tests/driver.c | 382 +++++++++++++++++++++++++++++++++++ 2 files changed, 383 insertions(+), 1 deletion(-)
diff --git a/dlls/gdi32/tests/Makefile.in b/dlls/gdi32/tests/Makefile.in index 9d82c278e9..6c32f22c1d 100644 --- a/dlls/gdi32/tests/Makefile.in +++ b/dlls/gdi32/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = gdi32.dll -IMPORTS = user32 gdi32 advapi32 +IMPORTS = user32 gdi32 advapi32 d3d10_1 dxgi
I think we don't want to require d3d10_1 and dxgi for gdi32 tests.
Right. I will move the dxgi part in dxgi tests.