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:
Lionel Landwerlin 2020-08-04 17:34:13 +03:00 committed by Marge Bot
parent ff3b4f6683
commit 3f91f4e2ab

View file

@ -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: