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
d71d1cf7
Commit
d71d1cf7
authored
Mar 17, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8: COM cleanup for the IDirect3DVolumeTexture8 iface.
parent
ec90fcd9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
d3d8_private.h
dlls/d3d8/d3d8_private.h
+2
-2
device.c
dlls/d3d8/device.c
+1
-1
volumetexture.c
dlls/d3d8/volumetexture.c
+0
-0
No files found.
dlls/d3d8/d3d8_private.h
View file @
d71d1cf7
...
@@ -378,8 +378,8 @@ HRESULT texture_init(IDirect3DTexture8Impl *texture, IDirect3DDevice8Impl *devic
...
@@ -378,8 +378,8 @@ HRESULT texture_init(IDirect3DTexture8Impl *texture, IDirect3DDevice8Impl *devic
*/
*/
struct
IDirect3DVolumeTexture8Impl
struct
IDirect3DVolumeTexture8Impl
{
{
const
IDirect3DVolumeTexture8Vtbl
*
lpVtbl
;
IDirect3DVolumeTexture8
IDirect3DVolumeTexture8_iface
;
LONG
ref
;
LONG
ref
;
IWineD3DBaseTexture
*
wined3d_texture
;
IWineD3DBaseTexture
*
wined3d_texture
;
IDirect3DDevice8
*
parentDevice
;
IDirect3DDevice8
*
parentDevice
;
};
};
...
...
dlls/d3d8/device.c
View file @
d71d1cf7
...
@@ -739,7 +739,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_CreateVolumeTexture(IDirect3DDevice8
...
@@ -739,7 +739,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_CreateVolumeTexture(IDirect3DDevice8
}
}
TRACE
(
"Created volume texture %p.
\n
"
,
object
);
TRACE
(
"Created volume texture %p.
\n
"
,
object
);
*
texture
=
(
IDirect3DVolumeTexture8
*
)
object
;
*
texture
=
&
object
->
IDirect3DVolumeTexture8_iface
;
return
D3D_OK
;
return
D3D_OK
;
}
}
...
...
dlls/d3d8/volumetexture.c
View file @
d71d1cf7
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