From 2c387819f4b19a6da1255c63a7b2746feed2f9d9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 8 Mar 2019 08:07:23 -0700 Subject: [PATCH] pipebuffer: s/PB_ALL_USAGE_FLAGS/PB_USAGE_ALL/ To fix build failure. I guess my meson configuration has assertions disabled for some reason. Trivial fix. --- src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c index 7101fdc269b..3f501c298ce 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c +++ b/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c @@ -303,7 +303,7 @@ pb_debug_buffer_validate(struct pb_buffer *_buf, { struct pb_debug_buffer *buf = pb_debug_buffer(_buf); - assert((flags & ~PB_ALL_USAGE_FLAGS) == 0); + assert((flags & ~PB_USAGE_ALL) == 0); mtx_lock(&buf->mutex); if(buf->map_count) { -- 2.30.2