summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2019-06-21 14:25:59 -0700
committerAlyssa Rosenzweig <[email protected]>2019-06-25 13:39:17 -0700
commit5aeffa95175dedc234fb640c188f8ba48b3f8e8c (patch)
tree6a4c9c8a3a96a092c0d6ea01f778f2ee0fa2e09f
parent06d192c742eb429af8002802048254031d122593 (diff)
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 <[email protected]>
-rw-r--r--src/gallium/drivers/panfrost/pan_blit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/panfrost/pan_blit.c b/src/gallium/drivers/panfrost/pan_blit.c
index 103316929ba..1e50448a67d 100644
--- a/src/gallium/drivers/panfrost/pan_blit.c
+++ b/src/gallium/drivers/panfrost/pan_blit.c
@@ -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;
}