- ComputeStateBlockMask
HRESULT function(ID3D10EffectTechnique, D3D10_STATE_BLOCK_MASK* pStateBlockMask) ComputeStateBlockMask;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- GetAnnotationByIndex
ID3D10EffectVariable function(ID3D10EffectTechnique, UINT Index) GetAnnotationByIndex;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- GetAnnotationByName
ID3D10EffectVariable function(ID3D10EffectTechnique, LPCSTR Name) GetAnnotationByName;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- GetDesc
HRESULT function(ID3D10EffectTechnique, D3D10_TECHNIQUE_DESC* pDesc) GetDesc;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- GetPassByIndex
ID3D10EffectPass function(ID3D10EffectTechnique, UINT Index) GetPassByIndex;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- GetPassByName
ID3D10EffectPass function(ID3D10EffectTechnique, LPCSTR Name) GetPassByName;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
- IsValid
BOOL function(ID3D10EffectTechnique) IsValid;
Undocumented in source but is binding to Windows. You might be able to learn more by searching the web for its name.
HACK to FIX vtbl[0] bug: This is an example HACK how to fix all interfaces which are NOT derived from IUnknown. They need the first entry in their vtbl[] point to the first virtual function. See: http://www.digitalmars.com/d/cpp_interface.html
http://d.puremagic.com/issues/show_bug.cgi?id=1687