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
e737129b
Commit
e737129b
authored
Feb 26, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Add the ID3D10Effect interface.
parent
88f6c5c6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
d3d10effect.h
include/d3d10effect.h
+36
-0
No files found.
include/d3d10effect.h
View file @
e737129b
...
...
@@ -89,6 +89,16 @@ typedef struct _D3D10_STATE_BLOCK_MASK
BYTE
Predication
;
}
D3D10_STATE_BLOCK_MASK
;
typedef
struct
_D3D10_EFFECT_DESC
{
BOOL
IsChildEffect
;
UINT
ConstantBuffers
;
UINT
SharedConstantBuffers
;
UINT
GlobalVariables
;
UINT
SharedGlobalVariables
;
UINT
Techniques
;
}
D3D10_EFFECT_DESC
;
DEFINE_GUID
(
IID_ID3D10EffectType
,
0x4e9e1ddc
,
0xcd9d
,
0x4772
,
0xa8
,
0x37
,
0x00
,
0x18
,
0x0b
,
0x9b
,
0x88
,
0xfd
);
#define INTERFACE ID3D10EffectType
...
...
@@ -191,4 +201,30 @@ DECLARE_INTERFACE(ID3D10EffectTechnique)
};
#undef INTERFACE
DEFINE_GUID
(
IID_ID3D10Effect
,
0x51b0ca8b
,
0xec0b
,
0x4519
,
0x87
,
0x0d
,
0x8e
,
0xe1
,
0xcb
,
0x50
,
0x17
,
0xc7
);
#define INTERFACE ID3D10Effect
DECLARE_INTERFACE_
(
ID3D10Effect
,
IUnknown
)
{
/* IUnknown methods */
STDMETHOD
(
QueryInterface
)(
THIS_
REFIID
riid
,
LPVOID
*
object
)
PURE
;
STDMETHOD_
(
ULONG
,
AddRef
)(
THIS
)
PURE
;
STDMETHOD_
(
ULONG
,
Release
)(
THIS
)
PURE
;
/* ID3D10Effect methods */
STDMETHOD_
(
BOOL
,
IsValid
)(
THIS
)
PURE
;
STDMETHOD_
(
BOOL
,
IsPool
)(
THIS
)
PURE
;
STDMETHOD
(
GetDevice
)(
THIS_
ID3D10Device
**
device
)
PURE
;
STDMETHOD
(
GetDesc
)(
THIS_
D3D10_EFFECT_DESC
*
desc
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectConstantBuffer
*
,
GetConstantBufferByIndex
)(
THIS_
UINT
index
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectConstantBuffer
*
,
GetConstantBufferByName
)(
THIS_
LPCSTR
name
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectVariable
*
,
GetVariableByIndex
)(
THIS_
UINT
index
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectVariable
*
,
GetVariableByName
)(
THIS_
LPCSTR
name
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectVariable
*
,
GetVariableBySemantic
)(
THIS_
LPCSTR
semantic
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectTechnique
*
,
GetTechniqueByIndex
)(
THIS_
UINT
index
)
PURE
;
STDMETHOD_
(
struct
ID3D10EffectTechnique
*
,
GetTechniqueByName
)(
THIS_
LPCSTR
name
)
PURE
;
STDMETHOD
(
Optimize
)(
THIS
)
PURE
;
STDMETHOD_
(
BOOL
,
IsOptimized
)(
THIS
)
PURE
;
};
#undef INTERFACE
#endif
/* __WINE_D3D10EFFECT_H */
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