Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3e631305
Commit
3e631305
authored
Dec 22, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Dec 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Handle the special DDSCL_SETFOCUSWINDOW | DDSCL_CREATEDEVICEWINDOW combination.
parent
d8153e53
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
20 deletions
+38
-20
ddraw.c
dlls/ddraw/ddraw.c
+30
-12
ddraw1.c
dlls/ddraw/tests/ddraw1.c
+2
-2
ddraw2.c
dlls/ddraw/tests/ddraw2.c
+2
-2
ddraw4.c
dlls/ddraw/tests/ddraw4.c
+2
-2
ddraw7.c
dlls/ddraw/tests/ddraw7.c
+2
-2
No files found.
dlls/ddraw/ddraw.c
View file @
3e631305
...
...
@@ -788,21 +788,20 @@ static HRESULT WINAPI ddraw7_SetCooperativeLevel(IDirectDraw7 *iface, HWND hwnd,
}
/* Handle those levels first which set various hwnds */
if
(
cooplevel
&
DDSCL_SETFOCUSWINDOW
)
if
((
cooplevel
&
DDSCL_SETFOCUSWINDOW
)
&&
!
(
cooplevel
&
DDSCL_CREATEDEVICEWINDOW
)
)
{
/* This isn't compatible with a lot of flags */
if
(
cooplevel
&
(
DDSCL_MULTITHREADED
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_FPUSETUP
|
DDSCL_FPUPRESERVE
|
DDSCL_ALLOWREBOOT
|
DDSCL_ALLOWMODEX
|
DDSCL_SETDEVICEWINDOW
|
DDSCL_NORMAL
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
)
)
if
(
cooplevel
&
(
DDSCL_MULTITHREADED
|
DDSCL_FPUSETUP
|
DDSCL_FPUPRESERVE
|
DDSCL_ALLOWREBOOT
|
DDSCL_ALLOWMODEX
|
DDSCL_SETDEVICEWINDOW
|
DDSCL_NORMAL
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
))
{
TRACE
(
"Called with incompatible flags, returning DDERR_INVALIDPARAMS
\n
"
);
WARN
(
"Called with incompatible flags, returning DDERR_INVALIDPARAMS.
\n
"
);
wined3d_mutex_unlock
();
return
DDERR_INVALIDPARAMS
;
}
...
...
@@ -845,7 +844,26 @@ static HRESULT WINAPI ddraw7_SetCooperativeLevel(IDirectDraw7 *iface, HWND hwnd,
ShowWindow
(
device_window
,
SW_SHOW
);
TRACE
(
"Created a device window %p.
\n
"
,
device_window
);
/* Native apparently leaks the created device window if setting the
* focus window below fails. */
This
->
cooperative_level
|=
DDSCL_CREATEDEVICEWINDOW
;
This
->
devicewindow
=
device_window
;
if
(
cooplevel
&
DDSCL_SETFOCUSWINDOW
)
{
if
(
!
hwnd
)
{
wined3d_mutex_unlock
();
return
DDERR_NOHWND
;
}
if
(
FAILED
(
hr
=
ddraw_set_focus_window
(
This
,
hwnd
)))
{
wined3d_mutex_unlock
();
return
hr
;
}
}
hwnd
=
device_window
;
}
}
...
...
dlls/ddraw/tests/ddraw1.c
View file @
3e631305
...
...
@@ -89,7 +89,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw_SetCooperativeLevel
(
ddraw
,
NULL
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
@@ -99,7 +99,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw_SetCooperativeLevel
(
ddraw
,
focus_window
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
dlls/ddraw/tests/ddraw2.c
View file @
3e631305
...
...
@@ -96,7 +96,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw2_SetCooperativeLevel
(
ddraw
,
NULL
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
@@ -106,7 +106,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw2_SetCooperativeLevel
(
ddraw
,
focus_window
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
dlls/ddraw/tests/ddraw4.c
View file @
3e631305
...
...
@@ -392,7 +392,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw4_SetCooperativeLevel
(
ddraw
,
NULL
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
@@ -402,7 +402,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw4_SetCooperativeLevel
(
ddraw
,
focus_window
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
dlls/ddraw/tests/ddraw7.c
View file @
3e631305
...
...
@@ -385,7 +385,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw7_SetCooperativeLevel
(
ddraw
,
NULL
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DDERR_NOHWND
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
@@ -395,7 +395,7 @@ static void test_coop_level_create_device_window(void)
ok
(
!
device_window
,
"Unexpected device window found.
\n
"
);
hr
=
IDirectDraw7_SetCooperativeLevel
(
ddraw
,
focus_window
,
DDSCL_SETFOCUSWINDOW
|
DDSCL_CREATEDEVICEWINDOW
|
DDSCL_EXCLUSIVE
|
DDSCL_FULLSCREEN
);
todo_wine
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
ok
(
hr
==
DD_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
device_window
=
FindWindowA
(
"DirectDrawDeviceWnd"
,
"DirectDrawDeviceWnd"
);
todo_wine
ok
(
!!
device_window
,
"Device window not found.
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment