Re: [Mesa-dev] [PATCH] i965: Define GEN_GE/GEN_LE macros in terms of GEN_LT.

2016-05-01 Thread Kenneth Graunke
On Sunday, May 1, 2016 1:25:20 PM PDT Matt Turner wrote: > GEN_LT has a straightforward implementation on which we can build the > GEN_GE and GEN_LE macros. > > Suggested-by: Ilia Mirkin > --- > src/mesa/drivers/dri/i965/brw_eu.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > >

[Mesa-dev] [PATCH] i965: Define GEN_GE/GEN_LE macros in terms of GEN_LT.

2016-05-01 Thread Matt Turner
GEN_LT has a straightforward implementation on which we can build the GEN_GE and GEN_LE macros. Suggested-by: Ilia Mirkin --- src/mesa/drivers/dri/i965/brw_eu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_eu.c b/src/mesa/drivers/dri/i9