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
0fa127b1
Commit
0fa127b1
authored
Nov 16, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 16, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPDIRECT3D7.
parent
83ed5efb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
d3d.c
dlls/ddraw/tests/d3d.c
+1
-1
d3d.h
include/d3d.h
+1
-1
No files found.
dlls/ddraw/tests/d3d.c
View file @
0fa127b1
...
...
@@ -30,7 +30,7 @@
#include "unknwn.h"
static
IDirectDraw7
*
lpDD
;
static
LPDIRECT3D7
lpD3D
=
NULL
;
static
IDirect3D7
*
lpD3D
;
static
IDirectDrawSurface7
*
lpDDS
;
static
IDirectDrawSurface7
*
lpDDSdepth
;
static
IDirect3DDevice7
*
lpD3DDevice
;
...
...
include/d3d.h
View file @
0fa127b1
...
...
@@ -1299,7 +1299,7 @@ DECLARE_INTERFACE_(IDirect3DDevice7,IUnknown)
STDMETHOD
(
EnumTextureFormats
)(
THIS_
LPD3DENUMPIXELFORMATSCALLBACK
lpD3DEnumPixelProc
,
LPVOID
lpArg
)
PURE
;
STDMETHOD
(
BeginScene
)(
THIS
)
PURE
;
STDMETHOD
(
EndScene
)(
THIS
)
PURE
;
STDMETHOD
(
GetDirect3D
)(
THIS_
LPDIRECT3D7
*
lplpDirect3D3
)
PURE
;
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
dwStencil
)
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