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
450c634a
Commit
450c634a
authored
Jan 25, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Feb 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Fix the type of three loop variables.
parent
29c06dff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
visual.c
dlls/d3d9/tests/visual.c
+3
-2
No files found.
dlls/d3d9/tests/visual.c
View file @
450c634a
...
...
@@ -557,7 +557,7 @@ static void test_mova(IDirect3DDevice9 *device)
IDirect3DVertexShader9
*
mova_shader
=
NULL
;
IDirect3DVertexShader9
*
mov_shader
=
NULL
;
HRESULT
hr
;
int
i
,
j
;
UINT
i
,
j
;
hr
=
IDirect3DDevice9_CreateVertexShader
(
device
,
mova_test
,
&
mova_shader
);
ok
(
SUCCEEDED
(
hr
),
"CreateVertexShader failed (%08x)
\n
"
,
hr
);
...
...
@@ -862,7 +862,8 @@ static void test_cube_wrap(IDirect3DDevice9 *device)
IDirect3DSurface9
*
surface
=
NULL
;
D3DLOCKED_RECT
locked_rect
;
HRESULT
hr
;
INT
x
,
y
,
face
;
UINT
x
;
INT
y
,
face
;
hr
=
IDirect3DDevice9_CreateVertexDeclaration
(
device
,
decl_elements
,
&
vertex_declaration
);
ok
(
SUCCEEDED
(
hr
),
"CreateVertexDeclaration failed (0x%08x)
\n
"
,
hr
);
...
...
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