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
27462d1d
Commit
27462d1d
authored
Dec 15, 2005
by
Paul Vriens
Committed by
Alexandre Julliard
Dec 15, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Don't treat missing d3d9.dll as a failure.
parent
bd52a2ee
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
vertexdeclaration.c
dlls/d3d9/tests/vertexdeclaration.c
+12
-6
No files found.
dlls/d3d9/tests/vertexdeclaration.c
View file @
27462d1d
...
...
@@ -20,19 +20,16 @@
#include <d3d9.h>
#include "wine/test.h"
static
HMODULE
d3d9_handle
=
0
;
static
IDirect3DDevice9
*
init_d3d9
(
void
)
{
IDirect3D9
*
(
__stdcall
*
d3d9_create
)(
UINT
SDKVersion
)
=
0
;
HMODULE
d3d9_handle
=
0
;
IDirect3D9
*
d3d9_ptr
=
0
;
IDirect3DDevice9
*
device_ptr
=
0
;
D3DPRESENT_PARAMETERS
present_parameters
;
HRESULT
hres
;
d3d9_handle
=
LoadLibrary
(
"d3d9"
);
ok
(
d3d9_handle
!=
NULL
,
"Failed to load d3d9.
\n
"
);
if
(
!
d3d9_handle
)
return
NULL
;
d3d9_create
=
(
void
*
)
GetProcAddress
(
d3d9_handle
,
"Direct3DCreate9"
);
ok
(
d3d9_create
!=
NULL
,
"Failed to get address of Direct3DCreate9
\n
"
);
if
(
!
d3d9_create
)
return
NULL
;
...
...
@@ -93,7 +90,16 @@ static void test_get_set_vertex_declaration(IDirect3DDevice9 *device_ptr)
START_TEST
(
vertexdeclaration
)
{
IDirect3DDevice9
*
device_ptr
=
init_d3d9
();
IDirect3DDevice9
*
device_ptr
;
d3d9_handle
=
LoadLibraryA
(
"d3d9.dll"
);
if
(
!
d3d9_handle
)
{
trace
(
"Could not load d3d9.dll, skipping tests
\n
"
);
return
;
}
device_ptr
=
init_d3d9
();
if
(
!
device_ptr
)
return
;
test_get_set_vertex_declaration
(
device_ptr
);
...
...
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