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
a3e77bfe
Commit
a3e77bfe
authored
Apr 20, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Apr 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: COM cleanup for the IDirect3DVolumeTexture9 iface.
parent
aab2d427
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
d3d9_private.h
dlls/d3d9/d3d9_private.h
+1
-1
device.c
dlls/d3d9/device.c
+1
-1
volumetexture.c
dlls/d3d9/volumetexture.c
+0
-0
No files found.
dlls/d3d9/d3d9_private.h
View file @
a3e77bfe
...
...
@@ -350,7 +350,7 @@ HRESULT texture_init(IDirect3DTexture9Impl *texture, IDirect3DDevice9Impl *devic
*/
typedef
struct
IDirect3DVolumeTexture9Impl
{
const
IDirect3DVolumeTexture9Vtbl
*
lpVtbl
;
IDirect3DVolumeTexture9
IDirect3DVolumeTexture9_iface
;
LONG
ref
;
struct
wined3d_texture
*
wined3d_texture
;
IDirect3DDevice9Ex
*
parentDevice
;
...
...
dlls/d3d9/device.c
View file @
a3e77bfe
...
...
@@ -803,7 +803,7 @@ static HRESULT WINAPI IDirect3DDevice9Impl_CreateVolumeTexture(IDirect3DDevice9E
}
TRACE
(
"Created volume texture %p.
\n
"
,
object
);
*
texture
=
(
IDirect3DVolumeTexture9
*
)
object
;
*
texture
=
&
object
->
IDirect3DVolumeTexture9_iface
;
return
D3D_OK
;
}
...
...
dlls/d3d9/volumetexture.c
View file @
a3e77bfe
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