Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Fixes: d8a3501f1b2 ("panfrost: Dynamically allocate shader variants")
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3515>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3515>
so->cbase = *cso;
so->is_compute = true;
- struct panfrost_shader_state *v = &so->variants[0];
+ struct panfrost_shader_state *v = calloc(1, sizeof(*v));
+ so->variants = v;
so->variant_count = 1;
so->active_variant = 0;