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
fcb9c5fa
Commit
fcb9c5fa
authored
Sep 23, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Sep 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Add stub for D3DXCleanMesh.
parent
51c90eba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
d3dx9_36.spec
dlls/d3dx9_36/d3dx9_36.spec
+1
-1
mesh.c
dlls/d3dx9_36/mesh.c
+8
-0
No files found.
dlls/d3dx9_36/d3dx9_36.spec
View file @
fcb9c5fa
...
...
@@ -8,7 +8,7 @@
@ stdcall D3DXCheckTextureRequirements(ptr ptr ptr ptr long ptr ptr)
@ stdcall D3DXCheckVersion(long long)
@ stdcall D3DXCheckVolumeTextureRequirements(ptr ptr ptr ptr ptr long ptr ptr)
@ st
ub D3DXCleanMesh(
ptr ptr ptr ptr ptr)
@ st
dcall D3DXCleanMesh(long
ptr ptr ptr ptr ptr)
@ stdcall D3DXColorAdjustContrast(ptr ptr float)
@ stdcall D3DXColorAdjustSaturation(ptr ptr float)
@ stdcall D3DXCompileShader(ptr long ptr ptr str str long ptr ptr ptr)
...
...
dlls/d3dx9_36/mesh.c
View file @
fcb9c5fa
...
...
@@ -3818,6 +3818,14 @@ cleanup:
return
hr
;
}
HRESULT
WINAPI
D3DXCleanMesh
(
D3DXCLEANTYPE
clean_type
,
LPD3DXMESH
mesh_in
,
const
DWORD
*
adjacency_in
,
LPD3DXMESH
*
mesh_out
,
DWORD
*
adjacency_out
,
LPD3DXBUFFER
*
errors_and_warnings
)
{
FIXME
(
"(%u, %p, %p, %p, %p, %p)
\n
"
,
clean_type
,
mesh_in
,
adjacency_in
,
mesh_out
,
adjacency_out
,
errors_and_warnings
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
D3DXFrameDestroy
(
LPD3DXFRAME
frame
,
LPD3DXALLOCATEHIERARCHY
alloc_hier
)
{
HRESULT
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