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
80382486
Commit
80382486
authored
Oct 23, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Avoid LPDIRECT3DVOLUMETEXTURE9.
parent
0c84de44
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
12 deletions
+3
-12
texture.c
dlls/d3dx9_36/texture.c
+3
-12
d3dx9tex.h
include/d3dx9tex.h
+0
-0
No files found.
dlls/d3dx9_36/texture.c
View file @
80382486
...
@@ -987,15 +987,8 @@ HRESULT WINAPI D3DXCreateCubeTextureFromFileInMemory(LPDIRECT3DDEVICE9 device,
...
@@ -987,15 +987,8 @@ HRESULT WINAPI D3DXCreateCubeTextureFromFileInMemory(LPDIRECT3DDEVICE9 device,
0
,
D3DFMT_UNKNOWN
,
D3DPOOL_MANAGED
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
0
,
NULL
,
NULL
,
texture
);
0
,
D3DFMT_UNKNOWN
,
D3DPOOL_MANAGED
,
D3DX_DEFAULT
,
D3DX_DEFAULT
,
0
,
NULL
,
NULL
,
texture
);
}
}
HRESULT
WINAPI
D3DXCreateVolumeTexture
(
LPDIRECT3DDEVICE9
device
,
HRESULT
WINAPI
D3DXCreateVolumeTexture
(
struct
IDirect3DDevice9
*
device
,
UINT
width
,
UINT
height
,
UINT
depth
,
UINT
width
,
UINT
miplevels
,
DWORD
usage
,
D3DFORMAT
format
,
D3DPOOL
pool
,
struct
IDirect3DVolumeTexture9
**
texture
)
UINT
height
,
UINT
depth
,
UINT
miplevels
,
DWORD
usage
,
D3DFORMAT
format
,
D3DPOOL
pool
,
LPDIRECT3DVOLUMETEXTURE9
*
texture
)
{
{
HRESULT
hr
;
HRESULT
hr
;
...
@@ -1814,9 +1807,7 @@ HRESULT WINAPI D3DXFillCubeTexture(LPDIRECT3DCUBETEXTURE9 texture,
...
@@ -1814,9 +1807,7 @@ HRESULT WINAPI D3DXFillCubeTexture(LPDIRECT3DCUBETEXTURE9 texture,
return
D3D_OK
;
return
D3D_OK
;
}
}
HRESULT
WINAPI
D3DXFillVolumeTexture
(
LPDIRECT3DVOLUMETEXTURE9
texture
,
HRESULT
WINAPI
D3DXFillVolumeTexture
(
struct
IDirect3DVolumeTexture9
*
texture
,
LPD3DXFILL3D
function
,
void
*
funcdata
)
LPD3DXFILL3D
function
,
LPVOID
funcdata
)
{
{
DWORD
miplevels
;
DWORD
miplevels
;
DWORD
m
,
i
,
x
,
y
,
z
,
c
,
v
;
DWORD
m
,
i
,
x
,
y
,
z
,
c
,
v
;
...
...
include/d3dx9tex.h
View file @
80382486
This diff is collapsed.
Click to expand it.
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