summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2015-12-07 20:24:12 -0800
committerEric Anholt <eric@anholt.net>2015-12-11 17:03:03 -0800
commitf6cca7a0c91ba1a99271160b9b4c7f22d012a334 (patch)
tree98c4768d87348d4e4f154eb62b5776a4b611b3da /src
parentae649bf1ad329472ef6a82e492f5cc384c062078 (diff)
vc4: Fix check for tile RCL blits with mismatched y.
This was a typo in 3a508a0d94d020d9cd95f8882e9393d83ffac377 that didn't show up in testcases at that moment. (cherry picked from commit 2792d118f17f92b1908e3f0fc735087bb7ea4c38)
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/vc4/vc4_blit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/vc4/vc4_blit.c b/src/gallium/drivers/vc4/vc4_blit.c
index f58cfd3e552..6f5c91d0909 100644
--- a/src/gallium/drivers/vc4/vc4_blit.c
+++ b/src/gallium/drivers/vc4/vc4_blit.c
@@ -64,7 +64,7 @@ vc4_tile_blit(struct pipe_context *pctx, const struct pipe_blit_info *info)
return false;
if (info->dst.box.x != info->src.box.x ||
- info->src.box.y != info->src.box.y ||
+ info->dst.box.y != info->src.box.y ||
info->dst.box.width != info->src.box.width ||
info->dst.box.height != info->src.box.height) {
return false;