diff options
author | Karol Herbst <[email protected]> | 2017-12-15 20:04:59 +0100 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2019-03-17 10:33:27 +0100 |
commit | bb50cb66f024c0e229313378ce6a872db78d02bf (patch) | |
tree | 5ce86a7ac35983b5222b2ce1361609428cea4906 /src/gallium | |
parent | 213de3ea99e8d83c6a8b8c03ebdf6babd8de3011 (diff) |
nvc0: print the shader type when dumping headers
this makes debugging the shader header a little easier
Acked-by: Pierre Moreau <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_program.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_program.c b/src/gallium/drivers/nouveau/nvc0/nvc0_program.c index 1bbfa4a9428..008b660b8c0 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_program.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_program.c @@ -554,6 +554,7 @@ nvc0_program_dump(struct nvc0_program *prog) unsigned pos; if (prog->type != PIPE_SHADER_COMPUTE) { + debug_printf("dumping HDR for type %i\n", prog->type); for (pos = 0; pos < ARRAY_SIZE(prog->hdr); ++pos) debug_printf("HDR[%02"PRIxPTR"] = 0x%08x\n", pos * sizeof(prog->hdr[0]), prog->hdr[pos]); |