[Mesa-stable] [PATCH] nir: Add GLSL_TYPE_[U]INT64 to some switch statements
Jason Ekstrand
jason at jlekstrand.net
Tue Apr 25 18:37:47 UTC 2017
On April 25, 2017 5:22:38 PM Andres Gomez <agomez at igalia.com> wrote:
> Hi Jason,
>
> I see that this patch landed in the shape of the
> 4cf079f7f231bbbf18cb6952ba0de90d9f378ebb commit, without the stable
> tag.
>
> I understand this patch isn't really interesting/applicable for 17.0.x
> and, hence, I can just ignore it.
It needs to be in 17.1 but not 17.0
--Jason
> Is that correct?
>
> Br.
>
> On Fri, 2017-04-14 at 15:25 -0700, Jason Ekstrand wrote:
>> Cc: mesa-stable at lists.freedesktop.org
>> ---
>> src/compiler/nir/nir.c | 2 ++
>> src/compiler/nir/nir_split_var_copies.c | 2 ++
>> 2 files changed, 4 insertions(+)
>>
>> diff --git a/src/compiler/nir/nir.c b/src/compiler/nir/nir.c
>> index 43fa60f..0abf9b6 100644
>> --- a/src/compiler/nir/nir.c
>> +++ b/src/compiler/nir/nir.c
>> @@ -699,7 +699,9 @@ deref_foreach_leaf_build_recur(nir_deref_var *deref,
>> nir_deref *tail,
>> assert(tail->child == NULL);
>> switch (glsl_get_base_type(tail->type)) {
>> case GLSL_TYPE_UINT:
>> + case GLSL_TYPE_UINT64:
>> case GLSL_TYPE_INT:
>> + case GLSL_TYPE_INT64:
>> case GLSL_TYPE_FLOAT:
>> case GLSL_TYPE_DOUBLE:
>> case GLSL_TYPE_BOOL:
>> diff --git a/src/compiler/nir/nir_split_var_copies.c
>> b/src/compiler/nir/nir_split_var_copies.c
>> index 58c7873..15a185e 100644
>> --- a/src/compiler/nir/nir_split_var_copies.c
>> +++ b/src/compiler/nir/nir_split_var_copies.c
>> @@ -147,7 +147,9 @@ split_var_copy_instr(nir_intrinsic_instr *old_copy,
>> break;
>>
>> case GLSL_TYPE_UINT:
>> + case GLSL_TYPE_UINT64:
>> case GLSL_TYPE_INT:
>> + case GLSL_TYPE_INT64:
>> case GLSL_TYPE_FLOAT:
>> case GLSL_TYPE_DOUBLE:
>> case GLSL_TYPE_BOOL:
> --
> Br,
>
> Andres
More information about the mesa-stable
mailing list