Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2cf47c00
Commit
2cf47c00
authored
Jun 04, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid a not needed address-of operator.
parent
5392facf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
visual.c
dlls/ddraw/tests/visual.c
+4
-4
No files found.
dlls/ddraw/tests/visual.c
View file @
2cf47c00
...
...
@@ -55,7 +55,7 @@ static BOOL createObjects(void)
ok
(
hr
==
DD_OK
||
hr
==
DDERR_NODIRECTDRAWSUPPORT
,
"DirectDrawCreateEx returned: %x
\n
"
,
hr
);
if
(
!
DirectDraw
)
goto
err
;
wc
.
lpfnWndProc
=
&
DefWindowProc
;
wc
.
lpfnWndProc
=
DefWindowProc
;
wc
.
lpszClassName
=
"d3d7_test_wc"
;
RegisterClass
(
&
wc
);
window
=
CreateWindow
(
"d3d7_test_wc"
,
"d3d7_test"
,
WS_MAXIMIZE
|
WS_VISIBLE
|
WS_CAPTION
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
...
...
@@ -824,7 +824,7 @@ static BOOL D3D1_createObjects(void)
return
FALSE
;
}
wc
.
lpfnWndProc
=
&
DefWindowProc
;
wc
.
lpfnWndProc
=
DefWindowProc
;
wc
.
lpszClassName
=
"texturemapblend_test_wc"
;
RegisterClass
(
&
wc
);
window
=
CreateWindow
(
"texturemapblend_test_wc"
,
"texturemapblend_test"
,
WS_MAXIMIZE
|
WS_VISIBLE
|
WS_CAPTION
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
...
...
@@ -1910,7 +1910,7 @@ static void D3D3_ViewportClearTest(void)
WORD
Indices
[]
=
{
0
,
1
,
2
,
2
,
3
,
0
};
DWORD
fvf
=
D3DFVF_XYZ
|
D3DFVF_DIFFUSE
;
wc
.
lpfnWndProc
=
&
DefWindowProc
;
wc
.
lpfnWndProc
=
DefWindowProc
;
wc
.
lpszClassName
=
"D3D3_ViewportClearTest_wc"
;
RegisterClass
(
&
wc
);
window
=
CreateWindow
(
"D3D3_ViewportClearTest_wc"
,
"D3D3_ViewportClearTest"
,
...
...
@@ -2176,7 +2176,7 @@ static void p8_primary_test()
goto
out
;
}
wc
.
lpfnWndProc
=
&
DefWindowProc
;
wc
.
lpfnWndProc
=
DefWindowProc
;
wc
.
lpszClassName
=
"p8_primary_test_wc"
;
RegisterClass
(
&
wc
);
window
=
CreateWindow
(
"p8_primary_test_wc"
,
"p8_primary_test"
,
WS_MAXIMIZE
|
WS_VISIBLE
|
WS_CAPTION
,
0
,
0
,
640
,
480
,
0
,
0
,
0
,
0
);
...
...
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