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
8f32358b
Commit
8f32358b
authored
Jan 02, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPD3DRECT.
parent
d1b87e13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
d3d.h
include/d3d.h
+5
-5
No files found.
include/d3d.h
View file @
8f32358b
...
...
@@ -661,7 +661,7 @@ DECLARE_INTERFACE_(IDirect3DViewport,IUnknown)
STDMETHOD
(
GetBackground
)(
THIS_
D3DMATERIALHANDLE
*
material
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
SetBackgroundDepth
)(
THIS_
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
GetBackgroundDepth
)(
THIS_
IDirectDrawSurface
**
surface
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
dwCount
,
LPD3DRECT
lpRects
,
DWORD
dwF
lags
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
count
,
D3DRECT
*
rects
,
DWORD
f
lags
)
PURE
;
STDMETHOD
(
AddLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
DeleteLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
NextLight
)(
THIS_
IDirect3DLight
*
ref
,
IDirect3DLight
**
light
,
DWORD
flags
)
PURE
;
...
...
@@ -729,7 +729,7 @@ DECLARE_INTERFACE_(IDirect3DViewport2,IDirect3DViewport)
STDMETHOD
(
GetBackground
)(
THIS_
D3DMATERIALHANDLE
*
material
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
SetBackgroundDepth
)(
THIS_
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
GetBackgroundDepth
)(
THIS_
IDirectDrawSurface
**
surface
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
dwCount
,
LPD3DRECT
lpRects
,
DWORD
dwF
lags
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
count
,
D3DRECT
*
rects
,
DWORD
f
lags
)
PURE
;
STDMETHOD
(
AddLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
DeleteLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
NextLight
)(
THIS_
IDirect3DLight
*
ref
,
IDirect3DLight
**
light
,
DWORD
flags
)
PURE
;
...
...
@@ -805,7 +805,7 @@ DECLARE_INTERFACE_(IDirect3DViewport3,IDirect3DViewport2)
STDMETHOD
(
GetBackground
)(
THIS_
D3DMATERIALHANDLE
*
material
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
SetBackgroundDepth
)(
THIS_
IDirectDrawSurface
*
surface
)
PURE
;
STDMETHOD
(
GetBackgroundDepth
)(
THIS_
IDirectDrawSurface
**
surface
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
dwCount
,
LPD3DRECT
lpRects
,
DWORD
dwF
lags
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
count
,
D3DRECT
*
rects
,
DWORD
f
lags
)
PURE
;
STDMETHOD
(
AddLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
DeleteLight
)(
THIS_
IDirect3DLight
*
light
)
PURE
;
STDMETHOD
(
NextLight
)(
THIS_
IDirect3DLight
*
ref
,
IDirect3DLight
**
light
,
DWORD
flags
)
PURE
;
...
...
@@ -815,7 +815,7 @@ DECLARE_INTERFACE_(IDirect3DViewport3,IDirect3DViewport2)
/*** IDirect3DViewport3 methods ***/
STDMETHOD
(
SetBackgroundDepth2
)(
THIS_
IDirectDrawSurface4
*
surface
)
PURE
;
STDMETHOD
(
GetBackgroundDepth2
)(
THIS_
IDirectDrawSurface4
**
surface
,
BOOL
*
valid
)
PURE
;
STDMETHOD
(
Clear2
)(
THIS_
DWORD
dwCount
,
LPD3DRECT
lpRects
,
DWORD
dwFlags
,
DWORD
dwColor
,
D3DVALUE
dvZ
,
DWORD
dwS
tencil
)
PURE
;
STDMETHOD
(
Clear2
)(
THIS_
DWORD
count
,
D3DRECT
*
rects
,
DWORD
flags
,
DWORD
color
,
D3DVALUE
z
,
DWORD
s
tencil
)
PURE
;
};
#undef INTERFACE
...
...
@@ -1303,7 +1303,7 @@ DECLARE_INTERFACE_(IDirect3DDevice7,IUnknown)
STDMETHOD
(
GetDirect3D
)(
THIS_
IDirect3D7
**
d3d
)
PURE
;
STDMETHOD
(
SetRenderTarget
)(
THIS_
IDirectDrawSurface7
*
surface
,
DWORD
flags
)
PURE
;
STDMETHOD
(
GetRenderTarget
)(
THIS_
IDirectDrawSurface7
**
surface
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
dwCount
,
LPD3DRECT
lpRects
,
DWORD
dwFlags
,
D3DCOLOR
dwColor
,
D3DVALUE
dvZ
,
DWORD
dwS
tencil
)
PURE
;
STDMETHOD
(
Clear
)(
THIS_
DWORD
count
,
D3DRECT
*
rects
,
DWORD
flags
,
D3DCOLOR
color
,
D3DVALUE
z
,
DWORD
s
tencil
)
PURE
;
STDMETHOD
(
SetTransform
)(
THIS_
D3DTRANSFORMSTATETYPE
dtstTransformStateType
,
LPD3DMATRIX
lpD3DMatrix
)
PURE
;
STDMETHOD
(
GetTransform
)(
THIS_
D3DTRANSFORMSTATETYPE
dtstTransformStateType
,
LPD3DMATRIX
lpD3DMatrix
)
PURE
;
STDMETHOD
(
SetViewport
)(
THIS_
LPD3DVIEWPORT7
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