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

2018-10-11 Thread Jason Ekstrand
Lgtm On October 10, 2018 18:13:42 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. v2: fix intel_miptree_finish_depth too (Caio) Reviewed-by: Dylan Baker Reviewed-by: Caio Marcelo de Oliveira Filho Reviewed-by:

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

2018-10-11 Thread Eric Engestrom
On Wednesday, 2018-10-10 16:13:37 -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. > > v2: fix intel_miptree_finish_depth too (Caio) > > Reviewed-by: Dylan Baker > Reviewed-by: Caio Marcelo de Oliveira Filho

[Mesa-dev] [PATCH v2] 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. v2: fix intel_miptree_finish_depth too (Caio) Reviewed-by: Dylan Baker Reviewed-by: Caio Marcelo de Oliveira Filho Reviewed-by: Jason Ekstrand --- I just added the finish_depth() fix in the sa