mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-21 12:10:30 +01:00
nir: don't consider txf_ms_mcs a query instruction
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6172>
This commit is contained in:
parent
ff3b4f6683
commit
3f91f4e2ab
1 changed files with 1 additions and 1 deletions
|
|
@ -2369,7 +2369,6 @@ nir_tex_instr_is_query(const nir_tex_instr *instr)
|
|||
case nir_texop_lod:
|
||||
case nir_texop_texture_samples:
|
||||
case nir_texop_query_levels:
|
||||
case nir_texop_txf_ms_mcs:
|
||||
return true;
|
||||
case nir_texop_tex:
|
||||
case nir_texop_txb:
|
||||
|
|
@ -2378,6 +2377,7 @@ nir_tex_instr_is_query(const nir_tex_instr *instr)
|
|||
case nir_texop_txf:
|
||||
case nir_texop_txf_ms:
|
||||
case nir_texop_txf_ms_fb:
|
||||
case nir_texop_txf_ms_mcs:
|
||||
case nir_texop_tg4:
|
||||
return false;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue