[Mesa-dev] [PATCH 9/9] mesa: always compare optype with symbolic name in ATI_fs
Miklós Máté
mtmkls at gmail.com
Mon Dec 18 15:12:11 UTC 2017
Thanks for the review. I'll also need somebody to commit these, because
I have no access.
MM
On 11/12/17 19:50, Marek Olšák wrote:
> For the series:
>
> Reviewed-by: Marek Olšák <marek.olsak at amd.com>
>
> Marek
>
> On Sat, Dec 2, 2017 at 11:35 PM, Miklós Máté <mtmkls at gmail.com> wrote:
>> Signed-off-by: Miklós Máté <mtmkls at gmail.com>
>> ---
>> src/mesa/main/atifragshader.c | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/src/mesa/main/atifragshader.c b/src/mesa/main/atifragshader.c
>> index 8538e3a53e..6b636f1dc7 100644
>> --- a/src/mesa/main/atifragshader.c
>> +++ b/src/mesa/main/atifragshader.c
>> @@ -76,7 +76,7 @@ _mesa_delete_ati_fragment_shader(struct gl_context *ctx, struct ati_fragment_sha
>> static void match_pair_inst(struct ati_fragment_shader *curProg, GLuint optype)
>> {
>> if (optype == curProg->last_optype) {
>> - curProg->last_optype = 1;
>> + curProg->last_optype = ATI_FRAGMENT_SHADER_ALPHA_OP;
>> }
>> }
>>
>> @@ -125,7 +125,7 @@ static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst,
>>
>> fprintf(stderr, "%s(%s, %s", op_name, _mesa_enum_to_string(op),
>> _mesa_enum_to_string(dst));
>> - if (!optype)
>> + if (optype == ATI_FRAGMENT_SHADER_COLOR_OP)
>> fprintf(stderr, ", %d", dstMask);
>>
>> fprintf(stderr, ", %s", create_dst_mod_str(dstMod));
>> @@ -631,7 +631,7 @@ _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst,
>> _mesa_error(ctx, GL_INVALID_ENUM, "C/AFragmentOpATI(op)");
>> return;
>> }
>> - if (optype == 1) {
>> + if (optype == ATI_FRAGMENT_SHADER_ALPHA_OP) {
>> if (((op == GL_DOT2_ADD_ATI) && (curI->Opcode[0] != GL_DOT2_ADD_ATI)) ||
>> ((op == GL_DOT3_ATI) && (curI->Opcode[0] != GL_DOT3_ATI)) ||
>> ((op == GL_DOT4_ATI) && (curI->Opcode[0] != GL_DOT4_ATI)) ||
>> --
>> 2.15.0.rc0
>>
>> _______________________________________________
>> mesa-dev mailing list
>> mesa-dev at lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list