https://git.reactos.org/?p=reactos.git;a=commitdiff;h=62751bc14ed66ecb18e1ad...
commit 62751bc14ed66ecb18e1ad84c97c1d2578cd4a21 Author: winesync ros-dev@reactos.org AuthorDate: Mon Sep 21 23:00:51 2020 +0200 Commit: Jérôme Gardou jerome.gardou@reactos.org CommitDate: Thu Feb 4 16:37:04 2021 +0100
[WINESYNC] d3dx9: Add a trace to D3DXCreateBuffer.
Signed-off-by: Matteo Bruni mbruni@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
wine commit id a172aead8d542b92709545d8bcd992f03ee19d82 by Matteo Bruni mbruni@codeweavers.com --- dll/directx/wine/d3dx9_36/core.c | 2 ++ sdk/tools/winesync/d3dx9.cfg | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/dll/directx/wine/d3dx9_36/core.c b/dll/directx/wine/d3dx9_36/core.c index c08a2310346..43dd58b9939 100644 --- a/dll/directx/wine/d3dx9_36/core.c +++ b/dll/directx/wine/d3dx9_36/core.c @@ -133,6 +133,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"); diff --git a/sdk/tools/winesync/d3dx9.cfg b/sdk/tools/winesync/d3dx9.cfg index 24ab0d03546..cd12df31d7f 100644 --- a/sdk/tools/winesync/d3dx9.cfg +++ b/sdk/tools/winesync/d3dx9.cfg @@ -15,4 +15,4 @@ files: {include/d3dx9.h: sdk/include/dxsdk/d3dx9.h, include/d3dx9anim.h: sdk/inc include/d3dx9mesh.h: sdk/include/dxsdk/d3dx9mesh.h, include/d3dx9of.h: sdk/include/dxsdk/d3dx9of.h, include/d3dx9shader.h: sdk/include/dxsdk/d3dx9shader.h, include/d3dx9shape.h: sdk/include/dxsdk/d3dx9shape.h, include/d3dx9tex.h: sdk/include/dxsdk/d3dx9tex.h, include/d3dx9xof.h: sdk/include/dxsdk/d3dx9xof.h} -tags: {wine: 81ababa864229a7e81abca76ef7e6a12fe5b256f} +tags: {wine: a172aead8d542b92709545d8bcd992f03ee19d82}