mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 21:30:23 +01:00
i965/fs_nir: Make the sampler register always unsigned
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
This commit is contained in:
parent
ae2880d131
commit
c2ded36bb6
1 changed files with 2 additions and 2 deletions
|
|
@ -1540,7 +1540,7 @@ void
|
|||
fs_visitor::nir_emit_texture(nir_tex_instr *instr)
|
||||
{
|
||||
brw_wm_prog_key *key = (brw_wm_prog_key*) this->key;
|
||||
int sampler = instr->sampler_index;
|
||||
unsigned sampler = instr->sampler_index;
|
||||
|
||||
/* FINISHME: We're failing to recompile our programs when the sampler is
|
||||
* updated. This only matters for the texture rectangle scale parameters
|
||||
|
|
@ -1582,7 +1582,7 @@ fs_visitor::nir_emit_texture(nir_tex_instr *instr)
|
|||
lod = src;
|
||||
break;
|
||||
case nir_tex_src_ms_index:
|
||||
sample_index = src;
|
||||
sample_index = retype(src, BRW_REGISTER_TYPE_UD);
|
||||
break;
|
||||
case nir_tex_src_offset:
|
||||
offset = src;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue