diff options
author | Luca Barbieri <[email protected]> | 2010-09-21 02:39:52 +0200 |
---|---|---|
committer | Luca Barbieri <[email protected]> | 2010-09-21 15:44:41 +0200 |
commit | 70fed0b0ec8a3ec4f6b9b47f1fe98cc54c6037f0 (patch) | |
tree | 915bd721659a1a3eaf7bb2705c371cbef4bd9917 /src/gallium/state_trackers/d3d1x/d3dapi | |
parent | 2ec86793bd43fe15d8f79d04e32d6c524e8ad844 (diff) |
d3d1x: add blob and signature extraction APIs
NOTE: untested, needs a testing tool!
Diffstat (limited to 'src/gallium/state_trackers/d3d1x/d3dapi')
-rw-r--r-- | src/gallium/state_trackers/d3d1x/d3dapi/d3dcommon.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/d3d1x/d3dapi/d3dcommon.idl b/src/gallium/state_trackers/d3d1x/d3dapi/d3dcommon.idl index 3594bf58f8c..71021b8a6c0 100644 --- a/src/gallium/state_trackers/d3d1x/d3dapi/d3dcommon.idl +++ b/src/gallium/state_trackers/d3d1x/d3dapi/d3dcommon.idl @@ -314,6 +314,10 @@ interface ID3D10Blob : IUnknown SIZE_T GetBufferSize(); }; +typedef ID3D10Blob* LPD3D10BLOB; +typedef ID3D10Blob ID3DBlob; +typedef ID3DBlob* LPD3DBLOB; + typedef enum _D3D_INCLUDE_TYPE { D3D_INCLUDE_LOCAL = 0, |