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
dcb10166
Commit
dcb10166
authored
Jan 01, 2014
by
Stefan Dösinger
Committed by
Alexandre Julliard
Jan 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Use SIZE_T for some iterators.
parent
ebfdcc9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
10 deletions
+5
-10
mesh.c
dlls/d3dx9_36/mesh.c
+5
-10
No files found.
dlls/d3dx9_36/mesh.c
View file @
dcb10166
...
@@ -2686,8 +2686,7 @@ static HRESULT parse_material(ID3DXFileData *filedata, D3DXMATERIAL *material)
...
@@ -2686,8 +2686,7 @@ static HRESULT parse_material(ID3DXFileData *filedata, D3DXMATERIAL *material)
const
BYTE
*
data
;
const
BYTE
*
data
;
GUID
type
;
GUID
type
;
ID3DXFileData
*
child
;
ID3DXFileData
*
child
;
SIZE_T
nb_children
;
SIZE_T
i
,
nb_children
;
int
i
;
material
->
pTextureFilename
=
NULL
;
material
->
pTextureFilename
=
NULL
;
...
@@ -3827,8 +3826,7 @@ static HRESULT load_frame(struct ID3DXFileData *filedata, DWORD options, struct
...
@@ -3827,8 +3826,7 @@ static HRESULT load_frame(struct ID3DXFileData *filedata, DWORD options, struct
D3DXFRAME
*
frame
=
NULL
;
D3DXFRAME
*
frame
=
NULL
;
D3DXMESHCONTAINER
**
next_container
;
D3DXMESHCONTAINER
**
next_container
;
D3DXFRAME
**
next_child
;
D3DXFRAME
**
next_child
;
SIZE_T
nb_children
;
SIZE_T
i
,
nb_children
;
int
i
;
hr
=
filedata_get_name
(
filedata
,
&
name
);
hr
=
filedata_get_name
(
filedata
,
&
name
);
if
(
FAILED
(
hr
))
return
hr
;
if
(
FAILED
(
hr
))
return
hr
;
...
@@ -3885,9 +3883,8 @@ HRESULT WINAPI D3DXLoadMeshHierarchyFromXInMemory(const void *memory, DWORD memo
...
@@ -3885,9 +3883,8 @@ HRESULT WINAPI D3DXLoadMeshHierarchyFromXInMemory(const void *memory, DWORD memo
D3DXF_FILELOADMEMORY
source
;
D3DXF_FILELOADMEMORY
source
;
D3DXFRAME
*
first_frame
=
NULL
;
D3DXFRAME
*
first_frame
=
NULL
;
D3DXFRAME
**
next_frame
=
&
first_frame
;
D3DXFRAME
**
next_frame
=
&
first_frame
;
SIZE_T
nb_children
;
SIZE_T
i
,
nb_children
;
GUID
guid
;
GUID
guid
;
int
i
;
TRACE
(
"(%p, %u, %x, %p, %p, %p, %p, %p)
\n
"
,
memory
,
memory_size
,
options
,
TRACE
(
"(%p, %u, %x, %p, %p, %p, %p, %p)
\n
"
,
memory
,
memory_size
,
options
,
device
,
alloc_hier
,
load_user_data
,
frame_hierarchy
,
anim_controller
);
device
,
alloc_hier
,
load_user_data
,
frame_hierarchy
,
anim_controller
);
...
@@ -4124,8 +4121,7 @@ static HRESULT parse_frame(struct ID3DXFileData *filedata, DWORD options, struct
...
@@ -4124,8 +4121,7 @@ static HRESULT parse_frame(struct ID3DXFileData *filedata, DWORD options, struct
D3DXMATRIX
transform
=
*
parent_transform
;
D3DXMATRIX
transform
=
*
parent_transform
;
ID3DXFileData
*
child
;
ID3DXFileData
*
child
;
GUID
type
;
GUID
type
;
SIZE_T
nb_children
;
SIZE_T
i
,
nb_children
;
int
i
;
hr
=
filedata
->
lpVtbl
->
GetChildren
(
filedata
,
&
nb_children
);
hr
=
filedata
->
lpVtbl
->
GetChildren
(
filedata
,
&
nb_children
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
))
...
@@ -4190,9 +4186,8 @@ HRESULT WINAPI D3DXLoadMeshFromXInMemory(const void *memory, DWORD memory_size,
...
@@ -4190,9 +4186,8 @@ HRESULT WINAPI D3DXLoadMeshFromXInMemory(const void *memory, DWORD memory_size,
void
*
concat_indices
=
NULL
;
void
*
concat_indices
=
NULL
;
DWORD
index_offset
;
DWORD
index_offset
;
DWORD
concat_vertex_size
;
DWORD
concat_vertex_size
;
SIZE_T
nb_children
;
SIZE_T
i
,
nb_children
;
GUID
guid
;
GUID
guid
;
int
i
;
TRACE
(
"(%p, %u, %x, %p, %p, %p, %p, %p, %p)
\n
"
,
memory
,
memory_size
,
options
,
TRACE
(
"(%p, %u, %x, %p, %p, %p, %p, %p, %p)
\n
"
,
memory
,
memory_size
,
options
,
device
,
adjacency_out
,
materials_out
,
effects_out
,
num_materials_out
,
mesh_out
);
device
,
adjacency_out
,
materials_out
,
effects_out
,
num_materials_out
,
mesh_out
);
...
...
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