Commit c5eb2ed2 authored by Matteo Bruni's avatar Matteo Bruni Committed by Alexandre Julliard

wined3d: Add a TRACE to wined3d_buffer_copy().

parent 934ddd08
...@@ -1198,6 +1198,9 @@ void wined3d_buffer_copy(struct wined3d_buffer *dst_buffer, unsigned int dst_off ...@@ -1198,6 +1198,9 @@ void wined3d_buffer_copy(struct wined3d_buffer *dst_buffer, unsigned int dst_off
struct wined3d_context *context; struct wined3d_context *context;
DWORD dst_location; 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(dst_buffer);
buffer_mark_used(src_buffer); buffer_mark_used(src_buffer);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment