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
7e403aac
Commit
7e403aac
authored
Jun 22, 2011
by
Dylan Smith
Committed by
Alexandre Julliard
Jun 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Add stubs for D3DXCreateSkinInfo functions.
parent
e135972f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
2 deletions
+42
-2
Makefile.in
dlls/d3dx9_36/Makefile.in
+1
-0
d3dx9_36.spec
dlls/d3dx9_36/d3dx9_36.spec
+2
-2
skin.c
dlls/d3dx9_36/skin.c
+39
-0
No files found.
dlls/d3dx9_36/Makefile.in
View file @
7e403aac
...
...
@@ -11,6 +11,7 @@ C_SRCS = \
math.c
\
mesh.c
\
shader.c
\
skin.c
\
sprite.c
\
surface.c
\
texture.c
\
...
...
dlls/d3dx9_36/d3dx9_36.spec
View file @
7e403aac
...
...
@@ -84,9 +84,9 @@
@ stub D3DXCreateRenderToEnvMap(ptr long long long long long ptr)
@ stub D3DXCreateRenderToSurface(ptr long long long long long ptr)
@ stub D3DXCreateSPMesh(ptr ptr ptr ptr ptr)
@ st
ub
D3DXCreateSkinInfo(long ptr long ptr)
@ st
dcall
D3DXCreateSkinInfo(long ptr long ptr)
@ stub D3DXCreateSkinInfoFromBlendedMesh(ptr long ptr ptr)
@ st
ub
D3DXCreateSkinInfoFVF(long long long ptr)
@ st
dcall
D3DXCreateSkinInfoFVF(long long long ptr)
@ stdcall D3DXCreateSphere(ptr float long long ptr ptr)
@ stdcall D3DXCreateSprite(ptr ptr)
@ stdcall D3DXCreateTeapot(ptr ptr ptr)
...
...
dlls/d3dx9_36/skin.c
0 → 100644
View file @
7e403aac
/*
* Skin Info operations specific to D3DX9.
*
* Copyright (C) 2011 Dylan Smith
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "wine/debug.h"
#include "d3dx9_36_private.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
d3dx
);
HRESULT
WINAPI
D3DXCreateSkinInfo
(
DWORD
num_vertices
,
CONST
D3DVERTEXELEMENT9
*
declaration
,
DWORD
num_bones
,
LPD3DXSKININFO
*
skin_info
)
{
FIXME
(
"(%u, %p, %u, %p): stub
\n
"
,
num_vertices
,
declaration
,
num_bones
,
skin_info
);
return
E_NOTIMPL
;
}
HRESULT
WINAPI
D3DXCreateSkinInfoFVF
(
DWORD
num_vertices
,
DWORD
fvf
,
DWORD
num_bones
,
LPD3DXSKININFO
*
skin_info
)
{
FIXME
(
"(%u, %x, %u, %p): stub
\n
"
,
num_vertices
,
fvf
,
num_bones
,
skin_info
);
return
E_NOTIMPL
;
}
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