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
28745b6f
Commit
28745b6f
authored
Mar 09, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Mar 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Turn some FIXME into TRACE.
parent
c98bf1b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
meshbuilder.c
dlls/d3drm/meshbuilder.c
+4
-4
No files found.
dlls/d3drm/meshbuilder.c
View file @
28745b6f
...
...
@@ -1145,7 +1145,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder3Impl_Load(IDirect3DRMMeshBuilder3*
hr
=
IDirectXFileData_GetNextObject
(
pData
,
&
pObject
);
if
(
hr
==
DXFILEERR_NOMOREOBJECTS
)
{
FIXME
(
"n
o more object
\n
"
);
TRACE
(
"N
o more object
\n
"
);
break
;
}
if
(
hr
!=
DXFILE_OK
)
...
...
@@ -1163,7 +1163,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder3Impl_Load(IDirect3DRMMeshBuilder3*
goto
end
;
}
FIXM
E
(
"Found object type whose GUID = %s
\n
"
,
debugstr_guid
(
pGuid
));
TRAC
E
(
"Found object type whose GUID = %s
\n
"
,
debugstr_guid
(
pGuid
));
if
(
!
IsEqualGUID
(
pGuid
,
&
TID_D3DRMMeshNormals
))
{
...
...
@@ -1176,7 +1176,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder3Impl_Load(IDirect3DRMMeshBuilder3*
This
->
nb_normals
=
*
(
DWORD
*
)
ptr
;
tmp
=
*
(
DWORD
*
)(
ptr
+
sizeof
(
DWORD
)
+
This
->
nb_normals
*
sizeof
(
D3DVECTOR
));
FIXM
E
(
"MeshNormals: nb_normals = %d, nb_faces_normals = %d
\n
"
,
This
->
nb_normals
,
tmp
);
TRAC
E
(
"MeshNormals: nb_normals = %d, nb_faces_normals = %d
\n
"
,
This
->
nb_normals
,
tmp
);
This
->
pNormals
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
nb_normals
*
sizeof
(
D3DVECTOR
));
memcpy
(
This
->
pNormals
,
ptr
+
sizeof
(
DWORD
),
This
->
nb_normals
*
sizeof
(
D3DVECTOR
));
...
...
@@ -1189,7 +1189,7 @@ static HRESULT WINAPI IDirect3DRMMeshBuilder3Impl_Load(IDirect3DRMMeshBuilder3*
This
->
nb_coords2d
=
*
(
DWORD
*
)
ptr
;
FIXM
E
(
"MeshTextureCoords: nb_coords2d = %d
\n
"
,
This
->
nb_coords2d
);
TRAC
E
(
"MeshTextureCoords: nb_coords2d = %d
\n
"
,
This
->
nb_coords2d
);
This
->
pCoords2d
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
nb_coords2d
*
sizeof
(
Coords2d
));
memcpy
(
This
->
pCoords2d
,
ptr
+
sizeof
(
DWORD
),
This
->
nb_coords2d
*
sizeof
(
Coords2d
));
...
...
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