Re: [Mesa-dev] [PATCH 04/11] util: move min/max/clamp macros to util macros.h

2016-10-18 Thread Jason Ekstrand
THANK YOU! I've been wanting to see this happen for a long time. On Sun, Oct 16, 2016 at 7:07 PM, Dave Airlie wrote: > From: Dave Airlie > > Although the vulkan drivers include mesa macros.h, for > radv I'd like to move away from that. > > Signed-off-by: Dave Airlie > --- > src/mesa/main

[Mesa-dev] [PATCH 04/11] util: move min/max/clamp macros to util macros.h

2016-10-16 Thread Dave Airlie
From: Dave Airlie Although the vulkan drivers include mesa macros.h, for radv I'd like to move away from that. Signed-off-by: Dave Airlie --- src/mesa/main/macros.h | 13 - src/util/macros.h | 13 + 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/s