d3dx9: Add a trace to D3DXCreateBuffer.

Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Matteo Bruni 2019-09-30 23:11:13 +02:00 committed by Alexandre Julliard
parent 81ababa864
commit a172aead8d
1 changed files with 2 additions and 0 deletions

View File

@ -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");