mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 20:20:24 +01:00
lima: fix compilation of standalone compiler
Fixes: e0aeee946004("lima: add summary report for shader-db")
Reviewed-by: Qiang Yu <yuq825@gmail.com>
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
This commit is contained in:
parent
b9fb90e6d3
commit
861c2b8d31
1 changed files with 2 additions and 2 deletions
|
|
@ -221,7 +221,7 @@ main(int argc, char **argv)
|
|||
nir_print_shader(nir, stdout);
|
||||
|
||||
struct lima_vs_shader_state *vs = ralloc(nir, struct lima_vs_shader_state);
|
||||
gpir_compile_nir(vs, nir);
|
||||
gpir_compile_nir(vs, nir, NULL);
|
||||
break;
|
||||
case MESA_SHADER_FRAGMENT:
|
||||
lima_program_optimize_fs_nir(nir);
|
||||
|
|
@ -230,7 +230,7 @@ main(int argc, char **argv)
|
|||
|
||||
struct lima_fs_shader_state *so = rzalloc(NULL, struct lima_fs_shader_state);
|
||||
struct ra_regs *ra = ppir_regalloc_init(NULL);
|
||||
ppir_compile_nir(so, nir, ra);
|
||||
ppir_compile_nir(so, nir, ra, NULL);
|
||||
break;
|
||||
default:
|
||||
errx(1, "unhandled shader stage: %d", stage);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue