From: Brian Paul Date: Fri, 8 Mar 2019 15:07:23 +0000 (-0700) Subject: pipebuffer: s/PB_ALL_USAGE_FLAGS/PB_USAGE_ALL/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c387819f4b19a6da1255c63a7b2746feed2f9d9;p=mesa.git 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. --- 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) {