wined3d: Add a TRACE to wined3d_buffer_copy().

Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Matteo Bruni 2020-04-01 21:51:08 +02:00 committed by Alexandre Julliard
parent 934ddd08bb
commit c5eb2ed2d1
1 changed files with 3 additions and 0 deletions

View File

@ -1198,6 +1198,9 @@ void wined3d_buffer_copy(struct wined3d_buffer *dst_buffer, unsigned int dst_off
struct wined3d_context *context;
DWORD dst_location;
TRACE("dst_buffer %p, dst_offset %u, src_buffer %p, src_offset %u, size %u.\n",
dst_buffer, dst_offset, src_buffer, src_offset, size);
buffer_mark_used(dst_buffer);
buffer_mark_used(src_buffer);