[PATCH 3/5] d3d10core: Get rid of the "partial stub" FIXME in d3d10_device_CreateBuffer().

Henri Verbeet hverbeet at codeweavers.com
Wed Feb 18 03:39:30 CST 2015


At this point it doesn't really add anything anymore.
---
 dlls/d3d10core/device.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/d3d10core/device.c b/dlls/d3d10core/device.c
index ccac3f2..7b811a6 100644
--- a/dlls/d3d10core/device.c
+++ b/dlls/d3d10core/device.c
@@ -1381,7 +1381,7 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateBuffer(ID3D10Device1 *iface,
     struct d3d10_buffer *object;
     HRESULT hr;
 
-    FIXME("iface %p, desc %p, data %p, buffer %p partial stub!\n", iface, desc, data, buffer);
+    TRACE("iface %p, desc %p, data %p, buffer %p.\n", iface, desc, data, buffer);
 
     object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
     if (!object)
-- 
1.7.10.4




More information about the wine-patches mailing list