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
29d2f95a
Commit
29d2f95a
authored
Nov 12, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPDIRECT3DVIEWPORT3.
parent
5b1dc444
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
d3d.h
include/d3d.h
+7
-6
No files found.
include/d3d.h
View file @
29d2f95a
...
...
@@ -309,7 +309,7 @@ DECLARE_INTERFACE_(IDirect3D3,IUnknown)
STDMETHOD
(
EnumDevices
)(
THIS_
LPD3DENUMDEVICESCALLBACK
lpEnumDevicesCallback
,
LPVOID
lpUserArg
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
LPDIRECT3DLIGHT
*
lplpDirect3DLight
,
IUnknown
*
pUnkOuter
)
PURE
;
STDMETHOD
(
CreateMaterial
)(
THIS_
struct
IDirect3DMaterial3
**
material
,
IUnknown
*
outer
)
PURE
;
STDMETHOD
(
CreateViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
*
lplpD3DViewport3
,
IUnknown
*
pUnkO
uter
)
PURE
;
STDMETHOD
(
CreateViewport
)(
THIS_
struct
IDirect3DViewport3
**
viewport
,
IUnknown
*
o
uter
)
PURE
;
STDMETHOD
(
FindDevice
)(
THIS_
LPD3DFINDDEVICESEARCH
lpD3DDFS
,
LPD3DFINDDEVICERESULT
lpD3DFDR
)
PURE
;
STDMETHOD
(
CreateDevice
)(
THIS_
REFCLSID
rclsid
,
IDirectDrawSurface4
*
surface
,
struct
IDirect3DDevice3
**
device
,
IUnknown
*
outer
)
PURE
;
...
...
@@ -1146,16 +1146,17 @@ DECLARE_INTERFACE_(IDirect3DDevice3,IUnknown)
/*** IDirect3DDevice3 methods ***/
STDMETHOD
(
GetCaps
)(
THIS_
LPD3DDEVICEDESC
lpD3DHWDevDesc
,
LPD3DDEVICEDESC
lpD3DHELDevDesc
)
PURE
;
STDMETHOD
(
GetStats
)(
THIS_
LPD3DSTATS
lpD3DStats
)
PURE
;
STDMETHOD
(
AddViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
lpDirect3DViewport3
)
PURE
;
STDMETHOD
(
DeleteViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
lpDirect3DViewport3
)
PURE
;
STDMETHOD
(
NextViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
lpDirect3DViewport3
,
LPDIRECT3DVIEWPORT3
*
lplpDirect3DViewport3
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
AddViewport
)(
THIS_
IDirect3DViewport3
*
viewport
)
PURE
;
STDMETHOD
(
DeleteViewport
)(
THIS_
IDirect3DViewport3
*
viewport
)
PURE
;
STDMETHOD
(
NextViewport
)(
THIS_
IDirect3DViewport3
*
ref
,
IDirect3DViewport3
**
viewport
,
DWORD
flags
)
PURE
;
STDMETHOD
(
EnumTextureFormats
)(
THIS_
LPD3DENUMPIXELFORMATSCALLBACK
lpD3DEnumPixelProc
,
LPVOID
lpArg
)
PURE
;
STDMETHOD
(
BeginScene
)(
THIS
)
PURE
;
STDMETHOD
(
EndScene
)(
THIS
)
PURE
;
STDMETHOD
(
GetDirect3D
)(
THIS_
LPDIRECT3D3
*
lplpDirect3D3
)
PURE
;
/*** DrawPrimitive API ***/
STDMETHOD
(
SetCurrentViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
lpDirect3DViewport3
)
PURE
;
STDMETHOD
(
GetCurrentViewport
)(
THIS_
LPDIRECT3DVIEWPORT3
*
lplpDirect3DViewport3
)
PURE
;
STDMETHOD
(
SetCurrentViewport
)(
THIS_
IDirect3DViewport3
*
viewport
)
PURE
;
STDMETHOD
(
GetCurrentViewport
)(
THIS_
IDirect3DViewport3
**
viewport
)
PURE
;
STDMETHOD
(
SetRenderTarget
)(
THIS_
IDirectDrawSurface4
*
surface
,
DWORD
flags
)
PURE
;
STDMETHOD
(
GetRenderTarget
)(
THIS_
IDirectDrawSurface4
**
surface
)
PURE
;
STDMETHOD
(
Begin
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
dwVertexTypeDesc
,
DWORD
dwFlags
)
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