Module: Mesa Branch: master Commit: 604b5f1dcabb7541a1d5bcf4178c44f81f5e015d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=604b5f1dcabb7541a1d5bcf4178c44f81f5e015d
Author: Rob Clark <[email protected]> Date: Fri Oct 26 13:50:58 2018 -0400 freedreno/a6xx: small cleanup Signed-off-by: Rob Clark <[email protected]> --- src/gallium/drivers/freedreno/a6xx/fd6_emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c index ebec740c52..16b0def6a4 100644 --- a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c +++ b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c @@ -841,7 +841,7 @@ fd6_emit_state(struct fd_ringbuffer *ring, struct fd6_emit *emit) } } - if ((dirty & FD_DIRTY_BLEND)) { + if (dirty & FD_DIRTY_BLEND) { struct fd6_blend_stateobj *blend = fd6_blend_stateobj(ctx->blend); uint32_t i; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
