mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
panfrost: Assert on indirect compute shaders
This case was overlooked. Much simpler than indirect graphics calls, can come as a follow on to the other indirect work. Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8774>
This commit is contained in:
parent
4b00d311e7
commit
9aede94711
1 changed files with 3 additions and 0 deletions
|
|
@ -101,6 +101,9 @@ panfrost_launch_grid(struct pipe_context *pipe,
|
|||
struct panfrost_device *dev = pan_device(pipe->screen);
|
||||
struct panfrost_batch *batch = panfrost_get_batch_for_fbo(ctx);
|
||||
|
||||
/* TODO: Indirect compute dispatch */
|
||||
assert(!info->indirect);
|
||||
|
||||
ctx->compute_grid = info;
|
||||
|
||||
struct panfrost_ptr t =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue