diff options
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/clover/core/queue.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/clover/core/queue.cpp b/src/gallium/state_trackers/clover/core/queue.cpp index 24d71f186e0..c91b97ad15e 100644 --- a/src/gallium/state_trackers/clover/core/queue.cpp +++ b/src/gallium/state_trackers/clover/core/queue.cpp @@ -50,7 +50,10 @@ command_queue::command_queue(clover::context &ctx, clover::device &dev, throw error(CL_INVALID_DEVICE); if (ctx.notify) { - struct pipe_debug_callback cb = { &debug_notify_callback, this }; + struct pipe_debug_callback cb; + memset(&cb, 0, sizeof(cb)); + cb.debug_message = &debug_notify_callback; + cb.data = this; if (pipe->set_debug_callback) pipe->set_debug_callback(pipe, &cb); } |