From 331c29d0831d2b3a17d6dc36346959cb6f79f9fb Mon Sep 17 00:00:00 2001 From: Ben Ashbaugh Date: Sat, 25 May 2024 18:20:19 -0700 Subject: [PATCH] improve tracing for clCommandCopyImageToBufferKHR --- intercept/src/dispatch.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/intercept/src/dispatch.cpp b/intercept/src/dispatch.cpp index c65a8c52..57912158 100644 --- a/intercept/src/dispatch.cpp +++ b/intercept/src/dispatch.cpp @@ -10935,9 +10935,11 @@ CL_API_ENTRY cl_int CL_API_CALL clCommandCopyImageToBufferKHR( sync_point_wait_list); CALL_LOGGING_ENTER( - "command_buffer = %p, command_queue = %p%s", + "command_buffer = %p, command_queue = %p, src_image = %p, dst_buffer = %p%s", command_buffer, command_queue, + src_image, + dst_buffer, syncPointWaitList.c_str() ); HOST_PERFORMANCE_TIMING_START();