mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
aco: fix 1D textureGrad() on GFX9
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Fixes: 6f718edced ('aco: simplify gathering of MIMG address components')
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4550>
This commit is contained in:
parent
8ce46f352e
commit
c818b5c089
1 changed files with 1 additions and 1 deletions
|
|
@ -8458,7 +8458,7 @@ void visit_tex(isel_context *ctx, nir_tex_instr *instr)
|
|||
if (instr->sampler_dim == GLSL_SAMPLER_DIM_1D && ctx->options->chip_class == GFX9) {
|
||||
assert(has_ddx && has_ddy && ddx.size() == 1 && ddy.size() == 1);
|
||||
Temp zero = bld.copy(bld.def(v1), Operand(0u));
|
||||
derivs = {ddy, zero, ddy, zero};
|
||||
derivs = {ddx, zero, ddy, zero};
|
||||
} else {
|
||||
for (unsigned i = 0; has_ddx && i < ddx.size(); i++)
|
||||
derivs.emplace_back(emit_extract_vector(ctx, ddx, i, v1));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue