lima: Improve error messages for unsupported GP operations

Reviewed-by: Erico Nunes <nunes.erico@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12738>
This commit is contained in:
Icecream95 2021-09-06 21:42:13 +12:00 committed by Marge Bot
parent 4ad4aa38fa
commit 2777d4f69d

View file

@ -315,13 +315,13 @@ static bool gpir_emit_load_const(gpir_block *block, nir_instr *ni)
static bool gpir_emit_ssa_undef(gpir_block *block, nir_instr *ni)
{
gpir_error("nir_ssa_undef_instr not support\n");
gpir_error("nir_ssa_undef_instr is not supported\n");
return false;
}
static bool gpir_emit_tex(gpir_block *block, nir_instr *ni)
{
gpir_error("nir_jump_instr not support\n");
gpir_error("texture operations are not supported\n");
return false;
}