Re: [Mesa-dev] [PATCH 6/8] tgsi/util: Change boolean for bool

2020-02-17 Thread Karol Herbst
by the way: Mind creating a MR on gitlab with this and the 2nd patch? This way we can get them reviewed and tested there and merged before the nouveau related patches. On Mon, Feb 17, 2020 at 9:09 PM Karol Herbst wrote: > > Reviewed-by: Karol Herbst > > On Mon, Feb 17, 2020 at 6:41 PM Mark Menzy

Re: [Mesa-dev] [PATCH 6/8] tgsi/util: Change boolean for bool

2020-02-17 Thread Karol Herbst
Reviewed-by: Karol Herbst On Mon, Feb 17, 2020 at 6:41 PM Mark Menzynski wrote: > > I was getting errors with "boolean" when compiling. This patch changes > boolean to bool from . > > Signed-off-by: Mark Menzynski > --- > src/gallium/auxiliary/tgsi/tgsi_util.c | 2 +- > src/gallium/auxiliary/t

[Mesa-dev] [PATCH 6/8] tgsi/util: Change boolean for bool

2020-02-17 Thread Mark Menzynski
I was getting errors with "boolean" when compiling. This patch changes boolean to bool from . Signed-off-by: Mark Menzynski --- src/gallium/auxiliary/tgsi/tgsi_util.c | 2 +- src/gallium/auxiliary/tgsi/tgsi_util.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gall