mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 13:28:06 +02:00
aux/trace: add missing return value to trace output
trace_screen_resource_bind_backing() was missing printing of the boolean return value. Add it. Reviewed-By: Mike Blumenkrantz <michael.blumenkrantz@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10900>
This commit is contained in:
parent
36d0ff4682
commit
844ae34a15
1 changed files with 2 additions and 0 deletions
|
|
@ -475,6 +475,8 @@ trace_screen_resource_bind_backing(struct pipe_screen *_screen,
|
|||
|
||||
result = screen->resource_bind_backing(screen, resource, pmem, offset);
|
||||
|
||||
trace_dump_ret(bool, result);
|
||||
|
||||
trace_dump_call_end();
|
||||
|
||||
return result;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue