diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-05-27 11:28:11 -0400 |
---|---|---|
committer | Alyssa Rosenzweig <[email protected]> | 2020-05-27 16:49:44 -0400 |
commit | d31bc0e21c4799cd34a1c18643cd15c3f1026a12 (patch) | |
tree | 9f88690a0b08039428cac96021e764deba69e227 /src/panfrost/bifrost | |
parent | f514bdd10676ac35a0d4d48f0aefd57d21feb2c8 (diff) |
pan/bi: Also add compact vertex texturing
This implies lod=0.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5232>
Diffstat (limited to 'src/panfrost/bifrost')
-rw-r--r-- | src/panfrost/bifrost/disassemble.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/disassemble.c b/src/panfrost/bifrost/disassemble.c index 0588d61a115..5ed1d309f08 100644 --- a/src/panfrost/bifrost/disassemble.c +++ b/src/panfrost/bifrost/disassemble.c @@ -1020,7 +1020,8 @@ static const struct add_op_info add_op_infos[] = { { 0x07f18, "LSHIFT_ADD_HIGH32.i32", ADD_TWO_SRC }, { 0x08000, "LD_ATTR", ADD_LOAD_ATTR, true }, { 0x0a000, "LD_VAR.32", ADD_VARYING_INTERP, true }, - { 0x0b000, "TEX", ADD_TEX_COMPACT, true }, + { 0x0b000, "TEXC", ADD_TEX_COMPACT, true }, + { 0x0b400, "TEXC.vtx", ADD_TEX_COMPACT, true }, { 0x0c188, "LOAD.i32", ADD_TWO_SRC, true }, { 0x0c1a0, "LD_UBO.i32", ADD_TWO_SRC, true }, { 0x0c1b8, "LD_SCRATCH.v2i32", ADD_TWO_SRC, true }, |