vc4: Fix check for tile RCL blits with mismatched y.

This was a typo in 3a508a0d94 that didn't
show up in testcases at that moment.
This commit is contained in:
Eric Anholt
2015-12-07 20:24:12 -08:00
parent 1529f138ff
commit 2792d118f1

View File

@@ -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;