Matteo Bruni : d3dx9: Add a trace to D3DXCreateBuffer.

Alexandre Julliard julliard at winehq.org
Tue Oct 1 15:50:30 CDT 2019


Module: wine
Branch: master
Commit: a172aead8d542b92709545d8bcd992f03ee19d82
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=a172aead8d542b92709545d8bcd992f03ee19d82

Author: Matteo Bruni <mbruni at codeweavers.com>
Date:   Mon Sep 30 23:11:13 2019 +0200

d3dx9: Add a trace to D3DXCreateBuffer.

Signed-off-by: Matteo Bruni <mbruni at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3dx9_36/core.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dlls/d3dx9_36/core.c b/dlls/d3dx9_36/core.c
index 75a0e84772..4c8070711c 100644
--- a/dlls/d3dx9_36/core.c
+++ b/dlls/d3dx9_36/core.c
@@ -129,6 +129,8 @@ HRESULT WINAPI D3DXCreateBuffer(DWORD size, ID3DXBuffer **buffer)
     struct ID3DXBufferImpl *object;
     HRESULT hr;
 
+    TRACE("size %u, buffer %p.\n", size, buffer);
+
     if (!buffer)
     {
         WARN("Invalid buffer specified.\n");




More information about the wine-cvs mailing list