mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
radeonsi: don't dump the shader key for non-monolithic shaders early
It's always zero. Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
015e2e0fce
commit
61010cfac0
1 changed files with 2 additions and 1 deletions
|
|
@ -6510,7 +6510,8 @@ int si_compile_tgsi_shader(struct si_screen *sscreen,
|
|||
* conversion fails. */
|
||||
if (r600_can_dump_shader(&sscreen->b, sel->info.processor) &&
|
||||
!(sscreen->b.debug_flags & DBG_NO_TGSI)) {
|
||||
si_dump_shader_key(sel->type, &shader->key, stderr);
|
||||
if (is_monolithic)
|
||||
si_dump_shader_key(sel->type, &shader->key, stderr);
|
||||
tgsi_dump(sel->tokens, 0);
|
||||
si_dump_streamout(&sel->so);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue