From: Brian Paul Date: Wed, 9 Jul 2008 17:46:16 +0000 (-0600) Subject: gallium: fix logic in pb_check_usage() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=93ff702b4f1c6016e249c4d326e71cdc4932f57c;p=mesa.git gallium: fix logic in pb_check_usage() --- diff --git a/src/gallium/auxiliary/pipebuffer/pb_buffer.h b/src/gallium/auxiliary/pipebuffer/pb_buffer.h index 83ea0be74b8..8505d333bda 100644 --- a/src/gallium/auxiliary/pipebuffer/pb_buffer.h +++ b/src/gallium/auxiliary/pipebuffer/pb_buffer.h @@ -221,7 +221,7 @@ pb_check_alignment(size_t requested, size_t provided) static INLINE boolean pb_check_usage(unsigned requested, unsigned provided) { - return (requested & provided) == provided ? TRUE : FALSE; + return (requested & provided) == requested ? TRUE : FALSE; }