mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
anv: add unspecified internal kernel send count support
Some kernel will be to large and potentially change too often to really have a consistent count. Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31384>
This commit is contained in:
parent
fb26ed6bf7
commit
068351f848
1 changed files with 1 additions and 1 deletions
|
|
@ -53,7 +53,7 @@ check_sends(struct genisa_stats *stats, unsigned send_count)
|
|||
{
|
||||
assert(stats->spills == 0);
|
||||
assert(stats->fills == 0);
|
||||
assert(stats->sends == send_count);
|
||||
assert(send_count == 0 || stats->sends == send_count);
|
||||
}
|
||||
|
||||
static struct anv_shader_internal *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue