mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
freedreno/a6xx: fix vsc assert
Fixes a debug build assert seeing with an android app. Not quite sure which path was passing us draw_info w/ instance_count==0. But we should just treat non-instanced draws as having a single instance. Signed-off-by: Rob Clark <robdclark@chromium.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5091>
This commit is contained in:
parent
f6f7bc2979
commit
11470fcde2
1 changed files with 1 additions and 2 deletions
|
|
@ -114,12 +114,11 @@ draw_stream_size_bits(const struct pipe_draw_info *info, unsigned num_bins,
|
|||
unsigned prim_strm_bits)
|
||||
{
|
||||
unsigned ndwords = prim_strm_bits / dword;
|
||||
assert(info->instance_count > 0);
|
||||
return (bitfield_size_bits(num_bins) /* bitfield of bins */
|
||||
+ 1 /* last-instance-bit */
|
||||
+ number_size_bits(ndwords) /* size of corresponding prim strm */
|
||||
+ 1 /* checksum */
|
||||
) * info->instance_count;
|
||||
) * MAX2(1, info->instance_count);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue