From 3f5eebe5e6a434193be1968f2646911f19b4d84d Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sat, 24 Jul 2021 15:12:03 -0400 Subject: [PATCH] agx: Drop dated /* TODO: RA */ We skip over vertex ID in RA now, it's fine. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asahi/compiler/agx_compile.c b/src/asahi/compiler/agx_compile.c index 7ac264f05a4..368488baf4d 100644 --- a/src/asahi/compiler/agx_compile.c +++ b/src/asahi/compiler/agx_compile.c @@ -386,7 +386,7 @@ agx_emit_intrinsic(agx_builder *b, nir_intrinsic_instr *instr) return agx_get_sr_to(b, dst, AGX_SR_BACKFACING); case nir_intrinsic_load_vertex_id: - return agx_mov_to(b, dst, agx_abs(agx_register(10, AGX_SIZE_32))); /* TODO: RA */ + return agx_mov_to(b, dst, agx_abs(agx_register(10, AGX_SIZE_32))); case nir_intrinsic_load_blend_const_color_r_float: return agx_blend_const(b, dst, 0); case nir_intrinsic_load_blend_const_color_g_float: return agx_blend_const(b, dst, 1);