diff options
author | Eric Anholt <[email protected]> | 2015-12-07 20:24:12 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2015-12-08 09:49:51 -0800 |
commit | 2792d118f17f92b1908e3f0fc735087bb7ea4c38 (patch) | |
tree | adaaa7c40e7579331f08d313e00a1c6aaa7aaa71 /src/gallium/drivers | |
parent | 1529f138fff59bdb857d5f7da0ee2537521d5044 (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.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/vc4/vc4_blit.c | 2 |
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; |