panfrost: Enable blitting

Now that all the prerequisites breaking u_blitter are fixed, we can
finally hook up panfrost_blit.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
This commit is contained in:
Alyssa Rosenzweig
2019-06-21 14:25:59 -07:00
parent 06d192c742
commit 5aeffa9517
-4
View File
@@ -87,14 +87,10 @@ panfrost_blit(struct pipe_context *pipe,
* u_blitter. We could do a little better by culling
* vertex jobs, though. */
/* TODO: Implement blitting. Commented out because u_blitter is not
* fully integrated and creates bugs in other places. */
#if 0
if (panfrost_u_blitter_blit(pipe, info))
return;
fprintf(stderr, "Unhandled blit");
#endif
return;
}