mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 02:20:11 +01:00
freedreno/ir3: fix wrong local_primitive_id_start type
When changing the patch to use an offset instead of a bool, the type was
accidentally left as bool.
Fixes: f472c98443 ("freedreno/ir3: add support for a650 tess shared storage")
Signed-off-by: Jonathan Marek <jonathan@marek.ca>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5765>
This commit is contained in:
parent
7cb4d4f24e
commit
e5f4527f20
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ struct state {
|
|||
struct exec_list emit_outputs;
|
||||
|
||||
/* tess ctrl shader on a650 gets the local primitive id at different bits: */
|
||||
bool local_primitive_id_start;
|
||||
unsigned local_primitive_id_start;
|
||||
};
|
||||
|
||||
static nir_ssa_def *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue