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
a426d335
Commit
a426d335
authored
Oct 14, 2014
by
Stefan Dösinger
Committed by
Alexandre Julliard
Oct 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Allow a width and height to be passed to create_device() in the d3d9ex tests.
parent
34b2d920
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
14 deletions
+35
-14
d3d9ex.c
dlls/d3d9/tests/d3d9ex.c
+35
-14
No files found.
dlls/d3d9/tests/d3d9ex.c
View file @
a426d335
...
@@ -30,6 +30,14 @@ static HMODULE d3d9_handle = 0;
...
@@ -30,6 +30,14 @@ static HMODULE d3d9_handle = 0;
static
HRESULT
(
WINAPI
*
pDirect3DCreate9Ex
)(
UINT
SDKVersion
,
IDirect3D9Ex
**
d3d9ex
);
static
HRESULT
(
WINAPI
*
pDirect3DCreate9Ex
)(
UINT
SDKVersion
,
IDirect3D9Ex
**
d3d9ex
);
struct
device_desc
{
HWND
device_window
;
unsigned
int
width
;
unsigned
int
height
;
BOOL
windowed
;
};
static
HWND
create_window
(
void
)
static
HWND
create_window
(
void
)
{
{
WNDCLASSA
wc
=
{
0
};
WNDCLASSA
wc
=
{
0
};
...
@@ -42,7 +50,7 @@ static HWND create_window(void)
...
@@ -42,7 +50,7 @@ static HWND create_window(void)
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
}
}
static
IDirect3DDevice9Ex
*
create_device
(
HWND
device_window
,
HWND
focus_window
,
BOOL
windowed
)
static
IDirect3DDevice9Ex
*
create_device
(
HWND
focus_window
,
const
struct
device_desc
*
desc
)
{
{
D3DPRESENT_PARAMETERS
present_parameters
=
{
0
};
D3DPRESENT_PARAMETERS
present_parameters
=
{
0
};
IDirect3DDevice9Ex
*
device
;
IDirect3DDevice9Ex
*
device
;
...
@@ -52,23 +60,31 @@ static IDirect3DDevice9Ex *create_device(HWND device_window, HWND focus_window,
...
@@ -52,23 +60,31 @@ static IDirect3DDevice9Ex *create_device(HWND device_window, HWND focus_window,
if
(
FAILED
(
pDirect3DCreate9Ex
(
D3D_SDK_VERSION
,
&
d3d9
)))
if
(
FAILED
(
pDirect3DCreate9Ex
(
D3D_SDK_VERSION
,
&
d3d9
)))
return
NULL
;
return
NULL
;
present_parameters
.
Windowed
=
windowed
;
present_parameters
.
hDeviceWindow
=
device_window
;
present_parameters
.
SwapEffect
=
D3DSWAPEFFECT_DISCARD
;
present_parameters
.
BackBufferWidth
=
640
;
present_parameters
.
BackBufferWidth
=
640
;
present_parameters
.
BackBufferHeight
=
480
;
present_parameters
.
BackBufferHeight
=
480
;
present_parameters
.
BackBufferFormat
=
D3DFMT_A8R8G8B8
;
present_parameters
.
BackBufferFormat
=
D3DFMT_A8R8G8B8
;
present_parameters
.
SwapEffect
=
D3DSWAPEFFECT_DISCARD
;
present_parameters
.
hDeviceWindow
=
focus_window
;
present_parameters
.
Windowed
=
TRUE
;
present_parameters
.
EnableAutoDepthStencil
=
TRUE
;
present_parameters
.
EnableAutoDepthStencil
=
TRUE
;
present_parameters
.
AutoDepthStencilFormat
=
D3DFMT_D24S8
;
present_parameters
.
AutoDepthStencilFormat
=
D3DFMT_D24S8
;
if
(
desc
)
{
present_parameters
.
BackBufferWidth
=
desc
->
width
;
present_parameters
.
BackBufferHeight
=
desc
->
height
;
present_parameters
.
hDeviceWindow
=
desc
->
device_window
;
present_parameters
.
Windowed
=
desc
->
windowed
;
}
mode
.
Size
=
sizeof
(
mode
);
mode
.
Size
=
sizeof
(
mode
);
mode
.
Width
=
640
;
mode
.
Width
=
present_parameters
.
BackBufferWidth
;
mode
.
Height
=
480
;
mode
.
Height
=
present_parameters
.
BackBufferHeight
;
mode
.
RefreshRate
=
0
;
mode
.
RefreshRate
=
0
;
mode
.
Format
=
D3DFMT_A8R8G8B8
;
mode
.
Format
=
D3DFMT_A8R8G8B8
;
mode
.
ScanLineOrdering
=
0
;
mode
.
ScanLineOrdering
=
0
;
m
=
w
indowed
?
NULL
:
&
mode
;
m
=
present_parameters
.
W
indowed
?
NULL
:
&
mode
;
if
(
SUCCEEDED
(
IDirect3D9Ex_CreateDeviceEx
(
d3d9
,
D3DADAPTER_DEFAULT
,
D3DDEVTYPE_HAL
,
focus_window
,
if
(
SUCCEEDED
(
IDirect3D9Ex_CreateDeviceEx
(
d3d9
,
D3DADAPTER_DEFAULT
,
D3DDEVTYPE_HAL
,
focus_window
,
D3DCREATE_HARDWARE_VERTEXPROCESSING
,
&
present_parameters
,
m
,
&
device
)))
goto
done
;
D3DCREATE_HARDWARE_VERTEXPROCESSING
,
&
present_parameters
,
m
,
&
device
)))
goto
done
;
...
@@ -326,7 +342,7 @@ static void test_swapchain_get_displaymode_ex(void)
...
@@ -326,7 +342,7 @@ static void test_swapchain_get_displaymode_ex(void)
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping swapchain GetDisplayModeEx tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping swapchain GetDisplayModeEx tests.
\n
"
);
goto
out
;
goto
out
;
...
@@ -537,7 +553,7 @@ static void test_user_memory(void)
...
@@ -537,7 +553,7 @@ static void test_user_memory(void)
D3DCAPS9
caps
;
D3DCAPS9
caps
;
window
=
create_window
();
window
=
create_window
();
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
goto
done
;
goto
done
;
...
@@ -667,7 +683,7 @@ static void test_reset(void)
...
@@ -667,7 +683,7 @@ static void test_reset(void)
UINT
mode_count
=
0
;
UINT
mode_count
=
0
;
window
=
create_window
();
window
=
create_window
();
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping test.
\n
"
);
skip
(
"Failed to create a D3D device, skipping test.
\n
"
);
DestroyWindow
(
window
);
DestroyWindow
(
window
);
...
@@ -1035,7 +1051,7 @@ static void test_reset_resources(void)
...
@@ -1035,7 +1051,7 @@ static void test_reset_resources(void)
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
goto
done
;
goto
done
;
...
@@ -1101,7 +1117,7 @@ static void test_vidmem_accounting(void)
...
@@ -1101,7 +1117,7 @@ static void test_vidmem_accounting(void)
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
goto
done
;
goto
done
;
...
@@ -1148,7 +1164,7 @@ static void test_user_memory_getdc(void)
...
@@ -1148,7 +1164,7 @@ static void test_user_memory_getdc(void)
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
if
(
!
(
device
=
create_device
(
window
,
window
,
TRUE
)))
if
(
!
(
device
=
create_device
(
window
,
NULL
)))
{
{
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
goto
done
;
goto
done
;
...
@@ -1187,10 +1203,15 @@ static void test_lost_device(void)
...
@@ -1187,10 +1203,15 @@ static void test_lost_device(void)
HWND
window
;
HWND
window
;
HRESULT
hr
;
HRESULT
hr
;
BOOL
ret
;
BOOL
ret
;
struct
device_desc
desc
;
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
window
=
CreateWindowA
(
"static"
,
"d3d9_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
640
,
480
,
NULL
,
NULL
,
NULL
,
NULL
);
0
,
0
,
640
,
480
,
NULL
,
NULL
,
NULL
,
NULL
);
if
(
!
(
device
=
create_device
(
window
,
window
,
FALSE
)))
desc
.
device_window
=
window
;
desc
.
width
=
640
;
desc
.
height
=
480
;
desc
.
windowed
=
FALSE
;
if
(
!
(
device
=
create_device
(
window
,
&
desc
)))
{
{
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
skip
(
"Failed to create a D3D device, skipping tests.
\n
"
);
goto
done
;
goto
done
;
...
...
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