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
ec1511ea
Commit
ec1511ea
authored
Jan 21, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Avoid LPD3DDRAWPRIMITIVESTRIDEDDATA.
parent
0b135993
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
d3d.h
include/d3d.h
+10
-4
No files found.
include/d3d.h
View file @
ec1511ea
...
...
@@ -1177,8 +1177,11 @@ DECLARE_INTERFACE_(IDirect3DDevice3,IUnknown)
STDMETHOD
(
DrawIndexedPrimitive
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
d3dvtVertexType
,
LPVOID
lpvVertices
,
DWORD
dwVertexCount
,
LPWORD
dwIndices
,
DWORD
dwIndexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
SetClipStatus
)(
THIS_
D3DCLIPSTATUS
*
clip_status
)
PURE
;
STDMETHOD
(
GetClipStatus
)(
THIS_
D3DCLIPSTATUS
*
clip_status
)
PURE
;
STDMETHOD
(
DrawPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
dwVertexType
,
LPD3DDRAWPRIMITIVESTRIDEDDATA
lpD3DDrawPrimStrideData
,
DWORD
dwVertexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
dwVertexType
,
LPD3DDRAWPRIMITIVESTRIDEDDATA
lpD3DDrawPrimStrideData
,
DWORD
dwVertexCount
,
LPWORD
lpIndex
,
DWORD
dwIndexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
DrawPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
DWORD
fvf
,
D3DDRAWPRIMITIVESTRIDEDDATA
*
strided_data
,
DWORD
vertex_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
DWORD
fvf
,
D3DDRAWPRIMITIVESTRIDEDDATA
*
strided_data
,
DWORD
vertex_count
,
WORD
*
indices
,
DWORD
index_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawPrimitiveVB
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
struct
IDirect3DVertexBuffer
*
vb
,
DWORD
start_vertex
,
DWORD
vertex_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveVB
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
struct
IDirect3DVertexBuffer
*
vb
,
...
...
@@ -1322,8 +1325,11 @@ DECLARE_INTERFACE_(IDirect3DDevice7,IUnknown)
STDMETHOD
(
DrawIndexedPrimitive
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
d3dvtVertexType
,
LPVOID
lpvVertices
,
DWORD
dwVertexCount
,
LPWORD
dwIndices
,
DWORD
dwIndexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
SetClipStatus
)(
THIS_
D3DCLIPSTATUS
*
clip_status
)
PURE
;
STDMETHOD
(
GetClipStatus
)(
THIS_
D3DCLIPSTATUS
*
clip_status
)
PURE
;
STDMETHOD
(
DrawPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
dwVertexType
,
LPD3DDRAWPRIMITIVESTRIDEDDATA
lpD3DDrawPrimStrideData
,
DWORD
dwVertexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
d3dptPrimitiveType
,
DWORD
dwVertexType
,
LPD3DDRAWPRIMITIVESTRIDEDDATA
lpD3DDrawPrimStrideData
,
DWORD
dwVertexCount
,
LPWORD
lpIndex
,
DWORD
dwIndexCount
,
DWORD
dwFlags
)
PURE
;
STDMETHOD
(
DrawPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
DWORD
fvf
,
D3DDRAWPRIMITIVESTRIDEDDATA
*
strided_data
,
DWORD
vertex_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveStrided
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
DWORD
fvf
,
D3DDRAWPRIMITIVESTRIDEDDATA
*
strided_data
,
DWORD
vertex_count
,
WORD
*
indices
,
DWORD
index_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawPrimitiveVB
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
struct
IDirect3DVertexBuffer7
*
vb
,
DWORD
start_vertex
,
DWORD
vertex_count
,
DWORD
flags
)
PURE
;
STDMETHOD
(
DrawIndexedPrimitiveVB
)(
THIS_
D3DPRIMITIVETYPE
primitive_type
,
struct
IDirect3DVertexBuffer7
*
vb
,
...
...
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