mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-24 18:00:48 +02:00
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:
parent
4ad4aa38fa
commit
2777d4f69d
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue