Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8a13f059
Commit
8a13f059
authored
Jan 31, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jan 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8: COM cleanup for the IDirect3DCubeTexture8 iface.
parent
75cc8985
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
71 additions
and
44 deletions
+71
-44
cubetexture.c
dlls/d3d8/cubetexture.c
+66
-38
d3d8_private.h
dlls/d3d8/d3d8_private.h
+4
-5
device.c
dlls/d3d8/device.c
+1
-1
No files found.
dlls/d3d8/cubetexture.c
View file @
8a13f059
This diff is collapsed.
Click to expand it.
dlls/d3d8/d3d8_private.h
View file @
8a13f059
...
...
@@ -348,15 +348,14 @@ struct IDirect3DBaseTexture8Impl
*/
struct
IDirect3DCubeTexture8Impl
{
/* IUnknown fields */
const
IDirect3DCubeTexture8Vtbl
*
lpVtbl
;
LONG
ref
;
IDirect3DCubeTexture8
IDirect3DCubeTexture8_iface
;
LONG
ref
;
/* IDirect3DResource8 fields */
IWineD3DCubeTexture
*
wineD3DCubeTexture
;
IWineD3DCubeTexture
*
wineD3DCubeTexture
;
/* Parent reference */
LPDIRECT3DDEVICE8
parentDevice
;
IDirect3DDevice8
*
parentDevice
;
};
HRESULT
cubetexture_init
(
IDirect3DCubeTexture8Impl
*
texture
,
IDirect3DDevice8Impl
*
device
,
...
...
dlls/d3d8/device.c
View file @
8a13f059
...
...
@@ -770,7 +770,7 @@ static HRESULT WINAPI IDirect3DDevice8Impl_CreateCubeTexture(IDirect3DDevice8 *i
}
TRACE
(
"Created cube texture %p.
\n
"
,
object
);
*
texture
=
(
IDirect3DCubeTexture8
*
)
object
;
*
texture
=
&
object
->
IDirect3DCubeTexture8_iface
;
return
hr
;
}
...
...
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