Henri Verbeet : d3d10core: Implement ID3D10Buffer::GetType().

Alexandre Julliard julliard at winehq.org
Mon Jan 26 10:14:02 CST 2009


Module: wine
Branch: master
Commit: 9c1abc908a5bd962ef39cd9d35c41a018fc24f09
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9c1abc908a5bd962ef39cd9d35c41a018fc24f09

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Mon Jan 26 09:38:14 2009 +0100

d3d10core: Implement ID3D10Buffer::GetType().

---

 dlls/d3d10core/buffer.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/d3d10core/buffer.c b/dlls/d3d10core/buffer.c
index b6d60af..c4f32bf 100644
--- a/dlls/d3d10core/buffer.c
+++ b/dlls/d3d10core/buffer.c
@@ -108,7 +108,9 @@ static HRESULT STDMETHODCALLTYPE d3d10_buffer_SetPrivateDataInterface(ID3D10Buff
 
 static void STDMETHODCALLTYPE d3d10_buffer_GetType(ID3D10Buffer *iface, D3D10_RESOURCE_DIMENSION *resource_dimension)
 {
-    FIXME("iface %p, resource_dimension %p stub!\n", iface, resource_dimension);
+    TRACE("iface %p, resource_dimension %p\n", iface, resource_dimension);
+
+    *resource_dimension = D3D10_RESOURCE_DIMENSION_BUFFER;
 }
 
 static void STDMETHODCALLTYPE d3d10_buffer_SetEvictionPriority(ID3D10Buffer *iface, UINT eviction_priority)




More information about the wine-cvs mailing list