Re: [Mesa-dev] [PATCH] i965/miptree: Use enum instead of boolean.

2018-10-10 Thread Jason Ekstrand
Oops... My bad. Reviewed-by: Jason Ekstrand On Wed, Oct 10, 2018 at 12:42 PM Rafael Antognolli < rafael.antogno...@intel.com> wrote: > ISL_AUX_USAGE_NONE happens to be the same as "false", but let's do the > right thing and use the enum. > --- > src/mesa/drivers/dri/i965/intel_mipmap_tree.h |

Re: [Mesa-dev] [PATCH] i965/miptree: Use enum instead of boolean.

2018-10-10 Thread Caio Marcelo de Oliveira Filho
On Wed, Oct 10, 2018 at 10:41:43AM -0700, Rafael Antognolli wrote: > ISL_AUX_USAGE_NONE happens to be the same as "false", but let's do the > right thing and use the enum. > --- Reviewed-by: Caio Marcelo de Oliveira Filho I think intel_miptree_finish_depth() in intel_mipmap_tree.c might need a s

Re: [Mesa-dev] [PATCH] i965/miptree: Use enum instead of boolean.

2018-10-10 Thread Dylan Baker
Reviewed-by: Dylan Baker Quoting Rafael Antognolli (2018-10-10 10:41:43) > ISL_AUX_USAGE_NONE happens to be the same as "false", but let's do the > right thing and use the enum. > --- > src/mesa/drivers/dri/i965/intel_mipmap_tree.h | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) >

[Mesa-dev] [PATCH] i965/miptree: Use enum instead of boolean.

2018-10-10 Thread Rafael Antognolli
ISL_AUX_USAGE_NONE happens to be the same as "false", but let's do the right thing and use the enum. --- src/mesa/drivers/dri/i965/intel_mipmap_tree.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri/i965/intel_mipmap_tree.h b/src/mesa/drivers/dri/i965