mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 15:20:10 +01:00
intel/blorp: Use nir_texop_txl
We set an explicit LOD immediately afterwards so we don't want implicit mipmap selection. Reviewed-by: Connor Abbott <cwabbott0@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11775>
This commit is contained in:
parent
fa717a202c
commit
7ecfbaf7f0
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ blorp_nir_tex(nir_builder *b, struct brw_blorp_blit_vars *v,
|
|||
pos = nir_fmul(b, pos, nir_load_var(b, v->v_src_inv_size));
|
||||
|
||||
nir_tex_instr *tex =
|
||||
blorp_create_nir_tex_instr(b, v, nir_texop_tex, pos, 2,
|
||||
blorp_create_nir_tex_instr(b, v, nir_texop_txl, pos, 2,
|
||||
key->texture_data_type);
|
||||
|
||||
assert(pos->num_components == 2);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue