mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 10:50:10 +01:00
agx: Remove dead arg
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20559>
This commit is contained in:
parent
17d1559036
commit
90dea84ef6
1 changed files with 2 additions and 2 deletions
|
|
@ -680,7 +680,7 @@ agx_blend_const(agx_builder *b, agx_index dst, unsigned comp)
|
|||
* helper invocation semantics. For now, I'm kicking the can down the road.
|
||||
*/
|
||||
static agx_instr *
|
||||
agx_emit_discard(agx_builder *b, nir_intrinsic_instr *instr)
|
||||
agx_emit_discard(agx_builder *b)
|
||||
{
|
||||
assert(!b->shader->key->fs.ignore_tib_dependencies && "invalid usage");
|
||||
agx_writeout(b, 0x0001);
|
||||
|
|
@ -748,7 +748,7 @@ agx_emit_intrinsic(agx_builder *b, nir_intrinsic_instr *instr)
|
|||
return NULL;
|
||||
|
||||
case nir_intrinsic_discard:
|
||||
return agx_emit_discard(b, instr);
|
||||
return agx_emit_discard(b);
|
||||
|
||||
case nir_intrinsic_load_back_face_agx:
|
||||
return agx_get_sr_to(b, dst, AGX_SR_BACKFACING);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue