diff options
author | Rob Clark <[email protected]> | 2018-10-26 13:50:58 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2018-10-26 18:10:00 -0400 |
commit | 604b5f1dcabb7541a1d5bcf4178c44f81f5e015d (patch) | |
tree | 631c1cff6f05308e72afb54d15dfaa60b1245cba /src | |
parent | 2a74d9ae8d1906913d15e45c7abeec20efc87e6d (diff) |
freedreno/a6xx: small cleanup
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/freedreno/a6xx/fd6_emit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a6xx/fd6_emit.c b/src/gallium/drivers/freedreno/a6xx/fd6_emit.c index ebec740c52e..16b0def6a40 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; |