diff options
Diffstat (limited to 'lib/mesa/src/gallium/drivers/vc4/vc4_context.h')
-rw-r--r-- | lib/mesa/src/gallium/drivers/vc4/vc4_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mesa/src/gallium/drivers/vc4/vc4_context.h b/lib/mesa/src/gallium/drivers/vc4/vc4_context.h index f47135371..a55f808a7 100644 --- a/lib/mesa/src/gallium/drivers/vc4/vc4_context.h +++ b/lib/mesa/src/gallium/drivers/vc4/vc4_context.h @@ -381,7 +381,7 @@ struct vc4_context { struct pipe_viewport_state viewport; struct vc4_constbuf_stateobj constbuf[PIPE_SHADER_TYPES]; struct vc4_vertexbuf_stateobj vertexbuf; - struct pipe_debug_callback debug; + struct util_debug_callback debug; struct vc4_hwperfmon *perfmon; /** @} */ @@ -429,7 +429,7 @@ struct vc4_depth_stencil_alpha_state { if (unlikely(vc4_debug & VC4_DEBUG_PERF)) \ fprintf(stderr, __VA_ARGS__); \ if (unlikely(vc4->debug.debug_message)) \ - pipe_debug_message(&vc4->debug, PERF_INFO, __VA_ARGS__); \ + util_debug_message(&vc4->debug, PERF_INFO, __VA_ARGS__); \ } while (0) static inline struct vc4_context * |