mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 18:38:05 +02:00
aco: adjust an assertion about nir_texop_txf_ms and GFX11
This can fail with RADV_DEBUG=nofmask. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19613>
This commit is contained in:
parent
cf7b96a83f
commit
fc193133d4
1 changed files with 1 additions and 2 deletions
|
|
@ -9449,8 +9449,7 @@ get_const_vec(nir_ssa_def* vec, nir_const_value* cv[4])
|
|||
void
|
||||
visit_tex(isel_context* ctx, nir_tex_instr* instr)
|
||||
{
|
||||
assert((instr->op != nir_texop_txf_ms || ctx->program->gfx_level >= GFX11) &&
|
||||
instr->op != nir_texop_samples_identical);
|
||||
assert(instr->op != nir_texop_samples_identical);
|
||||
|
||||
Builder bld(ctx->program, ctx->block);
|
||||
bool has_bias = false, has_lod = false, level_zero = false, has_compare = false,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue