Module: wine Branch: master Commit: 7379f31e4b7e7b1d5249815ff4e4a8819ee9d1a7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7379f31e4b7e7b1d5249815ff4...
Author: Jacek Caban jacek@codeweavers.com Date: Tue Jul 12 14:15:08 2011 +0200
d3d10effect.h: Added missing D3D10_EFFECT_* flags.
---
include/d3d10effect.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/d3d10effect.h b/include/d3d10effect.h index e020583..772d424 100644 --- a/include/d3d10effect.h +++ b/include/d3d10effect.h @@ -127,6 +127,10 @@ typedef struct _D3D10_PASS_SHADER_DESC UINT ShaderIndex; } D3D10_PASS_SHADER_DESC;
+#define D3D10_EFFECT_COMPILE_CHILD_EFFECT 0x0001 +#define D3D10_EFFECT_COMPILE_ALLOW_SLOW_OPS 0x0002 +#define D3D10_EFFECT_SINGLE_THREADED 0x0008 + DEFINE_GUID(IID_ID3D10EffectType, 0x4e9e1ddc, 0xcd9d, 0x4772, 0xa8, 0x37, 0x00, 0x18, 0x0b, 0x9b, 0x88, 0xfd);
#define INTERFACE ID3D10EffectType