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
60f736af
Commit
60f736af
authored
Mar 31, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Apr 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Add stub for D3DXLoadVolumeFromMemory.
parent
7cb303b8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
2 deletions
+43
-2
Makefile.in
dlls/d3dx9_36/Makefile.in
+2
-1
d3dx9_36.spec
dlls/d3dx9_36/d3dx9_36.spec
+1
-1
volume.c
dlls/d3dx9_36/volume.c
+40
-0
No files found.
dlls/d3dx9_36/Makefile.in
View file @
60f736af
...
@@ -21,7 +21,8 @@ C_SRCS = \
...
@@ -21,7 +21,8 @@ C_SRCS = \
sprite.c
\
sprite.c
\
surface.c
\
surface.c
\
texture.c
\
texture.c
\
util.c
util.c
\
volume.c
LEX_SRCS
=
asmshader.l
LEX_SRCS
=
asmshader.l
BISON_SRCS
=
asmshader.y
BISON_SRCS
=
asmshader.y
...
...
dlls/d3dx9_36/d3dx9_36.spec
View file @
60f736af
...
@@ -192,7 +192,7 @@
...
@@ -192,7 +192,7 @@
@ stub D3DXLoadVolumeFromFileA
@ stub D3DXLoadVolumeFromFileA
@ stub D3DXLoadVolumeFromFileInMemory
@ stub D3DXLoadVolumeFromFileInMemory
@ stub D3DXLoadVolumeFromFileW
@ stub D3DXLoadVolumeFromFileW
@ st
ub D3DXLoadVolumeFromMemory
@ st
dcall D3DXLoadVolumeFromMemory(ptr ptr ptr ptr long long long ptr ptr long long)
@ stub D3DXLoadVolumeFromResourceA
@ stub D3DXLoadVolumeFromResourceA
@ stub D3DXLoadVolumeFromResourceW
@ stub D3DXLoadVolumeFromResourceW
@ stub D3DXLoadVolumeFromVolume
@ stub D3DXLoadVolumeFromVolume
...
...
dlls/d3dx9_36/volume.c
0 → 100644
View file @
60f736af
/*
* Copyright 2010 Christian Costa
*
* 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
D3DXLoadVolumeFromMemory
(
LPDIRECT3DVOLUME9
destvolume
,
CONST
PALETTEENTRY
*
destpalette
,
CONST
D3DBOX
*
destbox
,
LPCVOID
srcmemory
,
D3DFORMAT
srcformat
,
UINT
srcrowpitch
,
UINT
srcslicepitch
,
CONST
PALETTEENTRY
*
srcpalette
,
CONST
D3DBOX
*
srcbox
,
DWORD
filter
,
D3DCOLOR
colorkey
)
{
FIXME
(
"(%p, %p, %p, %p, %x, %u, %u, %p, %p, %x, %x): stub
\n
"
,
destvolume
,
destpalette
,
destbox
,
srcmemory
,
srcformat
,
srcrowpitch
,
srcslicepitch
,
srcpalette
,
srcbox
,
filter
,
colorkey
);
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