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
caa7e42e
Commit
caa7e42e
authored
Jan 09, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPD3DMATERIAL.
parent
d8d83d2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
d3d.h
include/d3d.h
+6
-6
No files found.
include/d3d.h
View file @
caa7e42e
...
...
@@ -448,8 +448,8 @@ DECLARE_INTERFACE_(IDirect3DMaterial,IUnknown)
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirect3DMaterial methods ***/
STDMETHOD
(
Initialize
)(
THIS_
IDirect3D
*
d3d
)
PURE
;
STDMETHOD
(
SetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
SetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
struct
IDirect3DDevice
*
device
,
D3DMATERIALHANDLE
*
handle
)
PURE
;
STDMETHOD
(
Reserve
)(
THIS
)
PURE
;
STDMETHOD
(
Unreserve
)(
THIS
)
PURE
;
...
...
@@ -494,8 +494,8 @@ DECLARE_INTERFACE_(IDirect3DMaterial2,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirect3DMaterial2 methods ***/
STDMETHOD
(
SetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
SetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
struct
IDirect3DDevice2
*
device
,
D3DMATERIALHANDLE
*
handle
)
PURE
;
};
#undef INTERFACE
...
...
@@ -532,8 +532,8 @@ DECLARE_INTERFACE_(IDirect3DMaterial3,IUnknown)
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/*** IDirect3DMaterial3 methods ***/
STDMETHOD
(
SetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
LPD3DMATERIAL
lpMat
)
PURE
;
STDMETHOD
(
SetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetMaterial
)(
THIS_
D3DMATERIAL
*
data
)
PURE
;
STDMETHOD
(
GetHandle
)(
THIS_
struct
IDirect3DDevice3
*
device
,
D3DMATERIALHANDLE
*
handle
)
PURE
;
};
#undef INTERFACE
...
...
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