Lines Matching defs:texop
2723 nir_texop texop;
2731 texop = nir_texop_tex;
2740 texop = nir_texop_txl;
2746 texop = nir_texop_txf_ms;
2748 texop = nir_texop_txf;
2756 texop = nir_texop_tg4;
2761 texop = nir_texop_txs;
2766 texop = nir_texop_lod;
2771 texop = nir_texop_query_levels;
2776 texop = nir_texop_texture_samples;
2781 texop = nir_texop_fragment_fetch_amd;
2785 texop = nir_texop_fragment_mask_fetch_amd;
2800 switch (texop) {
2862 if (is_array && texop != nir_texop_lod)
2979 vtn_assert(texop == nir_texop_tex ||
2980 texop == nir_texop_tg4);
2981 if (texop == nir_texop_tex)
2982 texop = nir_texop_txb;
2989 vtn_assert(texop == nir_texop_txl || texop == nir_texop_txf ||
2990 texop == nir_texop_txs || texop == nir_texop_tg4);
2997 vtn_assert(texop == nir_texop_txl);
2998 texop = nir_texop_txd;
3024 vtn_assert(texop == nir_texop_tg4);
3031 vtn_assert(texop == nir_texop_txf_ms);
3034 texop = nir_texop_txf_ms;
3039 vtn_assert(texop == nir_texop_tex ||
3040 texop == nir_texop_txb ||
3041 texop == nir_texop_txd);
3057 instr->op = texop;