Commit fa456a61 authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

d3dcompiler: Implement ID3DBlob::GetBufferSize().

parent d889800b
...@@ -86,9 +86,11 @@ static void * STDMETHODCALLTYPE d3dcompiler_blob_GetBufferPointer(ID3DBlob *ifac ...@@ -86,9 +86,11 @@ static void * STDMETHODCALLTYPE d3dcompiler_blob_GetBufferPointer(ID3DBlob *ifac
static SIZE_T STDMETHODCALLTYPE d3dcompiler_blob_GetBufferSize(ID3DBlob *iface) static SIZE_T STDMETHODCALLTYPE d3dcompiler_blob_GetBufferSize(ID3DBlob *iface)
{ {
FIXME("iface %p stub!\n", iface); struct d3dcompiler_blob *blob = (struct d3dcompiler_blob *)iface;
TRACE("iface %p\n", iface);
return 0; return blob->size;
} }
const struct ID3D10BlobVtbl d3dcompiler_blob_vtbl = const struct ID3D10BlobVtbl d3dcompiler_blob_vtbl =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment