From: Alyssa Rosenzweig Date: Wed, 27 May 2020 15:24:49 +0000 (-0400) Subject: pan/bi: Add TEX.vtx opcode for vertex texturing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f514bdd10676ac35a0d4d48f0aefd57d21feb2c8;p=mesa.git pan/bi: Add TEX.vtx opcode for vertex texturing Always has an LOD. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index b2343ab7e11..0588d61a115 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -1127,6 +1127,7 @@ static const struct add_op_info add_op_infos[] = { { 0x193c0, "ST_VAR.v4", ADD_THREE_SRC, true }, { 0x1952c, "BLEND", ADD_BLENDING, true }, { 0x1a000, "LD_VAR.16", ADD_VARYING_INTERP, true }, + { 0x1ae20, "TEX.vtx", ADD_TEX, true }, { 0x1ae60, "TEX", ADD_TEX, true }, { 0x1b000, "TEX.f16", ADD_TEX_COMPACT, true }, { 0x1c000, "RSHIFT_NAND.i32", ADD_SHIFT },