mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-23 07:30:30 +01:00
lima/parser: Change value name in RSW parser
Second value of SHADER_ADDRESS is the length of the first instruction in the shader, so give it a better name. Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com Signed-off-by: Andreas Baierl <ichgeh@imkreisrum.de> Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3619> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3619>
This commit is contained in:
parent
5802259e54
commit
1572e8f3e1
1 changed files with 1 additions and 1 deletions
|
|
@ -535,7 +535,7 @@ parse_rsw(FILE *fp, uint32_t *value, int i, uint32_t *helper)
|
|||
fprintf(fp, ", UNKNOWN\n");
|
||||
break;
|
||||
case 9: /* SHADER ADDRESS */
|
||||
fprintf(fp, ": fs shader @ 0x%08x, ((uint32_t *)ctx->fs->bo->map)[0] & 0x1f: 0x%08x */\n",
|
||||
fprintf(fp, ": fs shader @ 0x%08x, first instr length %d */\n",
|
||||
*value & 0xffffffe0, *value & 0x0000001f);
|
||||
break;
|
||||
case 10: /* VARYING TYPES */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue