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
4dd685ec
Commit
4dd685ec
authored
Nov 14, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 15, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPDIRECT3DDEVICE.
parent
d3b739ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
d3d.h
include/d3d.h
+3
-3
No files found.
include/d3d.h
View file @
4dd685ec
...
...
@@ -450,7 +450,7 @@ DECLARE_INTERFACE_(IDirect3DMaterial,IUnknown)
STDMETHOD
(
Initialize
)(
THIS_
LPDIRECT3D
lpDirect3D
)
PURE
;
STDMETHOD
(
SetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
LPDIRECT3DDEVICE
lpDirect3DDevice
,
LPD3DMATERIALHANDLE
lpH
andle
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
struct
IDirect3DDevice
*
device
,
D3DMATERIALHANDLE
*
h
andle
)
PURE
;
STDMETHOD
(
Reserve
)(
THIS
)
PURE
;
STDMETHOD
(
Unreserve
)(
THIS
)
PURE
;
};
...
...
@@ -571,7 +571,7 @@ DECLARE_INTERFACE_(IDirect3DTexture,IUnknown)
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirect3DTexture methods ***/
STDMETHOD
(
Initialize
)(
THIS_
struct
IDirect3DDevice
*
device
,
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
LPDIRECT3DDEVICE
lpDirect3DDevice
,
LPD3DTEXTUREHANDLE
lpH
andle
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
struct
IDirect3DDevice
*
device
,
D3DTEXTUREHANDLE
*
h
andle
)
PURE
;
STDMETHOD
(
PaletteChanged
)(
THIS_
DWORD
dwStart
,
DWORD
dwCount
)
PURE
;
STDMETHOD
(
Load
)(
THIS_
IDirect3DTexture
*
texture
)
PURE
;
STDMETHOD
(
Unload
)(
THIS
)
PURE
;
...
...
@@ -886,7 +886,7 @@ DECLARE_INTERFACE_(IDirect3DExecuteBuffer,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirect3DExecuteBuffer methods ***/
STDMETHOD
(
Initialize
)(
THIS_
LPDIRECT3DDEVICE
lpDirect3DDevice
,
LPD3DEXECUTEBUFFERDESC
lpD
esc
)
PURE
;
STDMETHOD
(
Initialize
)(
THIS_
struct
IDirect3DDevice
*
device
,
D3DEXECUTEBUFFERDESC
*
d
esc
)
PURE
;
STDMETHOD
(
Lock
)(
THIS_
LPD3DEXECUTEBUFFERDESC
lpDesc
)
PURE
;
STDMETHOD
(
Unlock
)(
THIS
)
PURE
;
STDMETHOD
(
SetExecuteData
)(
THIS_
LPD3DEXECUTEDATA
lpData
)
PURE
;
...
...
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