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
2112f48e
Commit
2112f48e
authored
Nov 14, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Add the ID3D10StateBlock interface.
parent
4896f94a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
d3d10effect.h
include/d3d10effect.h
+19
-0
No files found.
include/d3d10effect.h
View file @
2112f48e
...
...
@@ -778,12 +778,31 @@ DECLARE_INTERFACE(ID3D10EffectPass)
};
#undef INTERFACE
DEFINE_GUID
(
IID_ID3D10StateBlock
,
0x0803425a
,
0x57f5
,
0x4dd6
,
0x94
,
0x65
,
0xa8
,
0x75
,
0x70
,
0x83
,
0x4a
,
0x08
);
#define INTERFACE ID3D10StateBlock
DECLARE_INTERFACE_
(
ID3D10StateBlock
,
IUnknown
)
{
/* IUnknown methods */
STDMETHOD
(
QueryInterface
)(
THIS_
REFIID
iid
,
void
**
object
)
PURE
;
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/* ID3D10StateBlock methods */
STDMETHOD
(
Capture
)(
THIS
)
PURE
;
STDMETHOD
(
Apply
)(
THIS
)
PURE
;
STDMETHOD
(
ReleaseAllDeviceObjects
)(
THIS
)
PURE
;
STDMETHOD
(
GetDevice
)(
THIS_
ID3D10Device
**
device
)
PURE
;
};
#undef INTERFACE
#ifdef __cplusplus
extern
"C"
{
#endif
HRESULT
WINAPI
D3D10CreateEffectFromMemory
(
void
*
data
,
SIZE_T
data_size
,
UINT
flags
,
ID3D10Device
*
device
,
ID3D10EffectPool
*
effect_pool
,
ID3D10Effect
**
effect
);
HRESULT
WINAPI
D3D10CreateStateBlock
(
ID3D10Device
*
device
,
D3D10_STATE_BLOCK_MASK
*
mask
,
ID3D10StateBlock
**
stateblock
);
#ifdef __cplusplus
}
...
...
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