mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
gallium/nir: Use sized types for nir_tex_instr::dest_type
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7989>
This commit is contained in:
parent
ff0b7e0da9
commit
4b623afc3f
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ nir_lower_pstipple_block(nir_block *block,
|
|||
tex->op = nir_texop_tex;
|
||||
tex->sampler_dim = GLSL_SAMPLER_DIM_2D;
|
||||
tex->coord_components = 2;
|
||||
tex->dest_type = nir_type_float;
|
||||
tex->dest_type = nir_type_float32;
|
||||
tex->texture_index = state->stip_tex->data.binding;
|
||||
tex->sampler_index = state->stip_tex->data.binding;
|
||||
tex->src[0].src_type = nir_tex_src_coord;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue