mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-20 04:30:22 +01:00
radeonsi: print new opt flags in si_dump_shader_key
Reviewed-by: Edward O'Callaghan <funfunctor@folklore1984.net> Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
e5302ad936
commit
76e953788a
1 changed files with 9 additions and 0 deletions
|
|
@ -6332,6 +6332,15 @@ static void si_dump_shader_key(unsigned shader, struct si_shader_key *key,
|
|||
default:
|
||||
assert(0);
|
||||
}
|
||||
|
||||
if ((shader == PIPE_SHADER_GEOMETRY ||
|
||||
shader == PIPE_SHADER_TESS_EVAL ||
|
||||
shader == PIPE_SHADER_VERTEX) &&
|
||||
!key->as_es && !key->as_ls) {
|
||||
fprintf(f, " opt.hw_vs.kill_outputs = 0x%"PRIx64"\n", key->opt.hw_vs.kill_outputs);
|
||||
fprintf(f, " opt.hw_vs.kill_outputs2 = 0x%x\n", key->opt.hw_vs.kill_outputs2);
|
||||
fprintf(f, " opt.hw_vs.clip_disable = %u\n", key->opt.hw_vs.clip_disable);
|
||||
}
|
||||
}
|
||||
|
||||
static void si_init_shader_ctx(struct si_shader_context *ctx,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue