mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
r600g/sb: dump sampler/resource index modes for textures.
This just aids debugging. Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
32769ac016
commit
90ac5fb6bb
1 changed files with 4 additions and 0 deletions
|
|
@ -466,6 +466,10 @@ void bc_dump::dump(fetch_node& n) {
|
|||
for (unsigned k = 0; k < 3; ++k)
|
||||
if (n.bc.offset[k])
|
||||
s << " O" << chans[k] << ":" << n.bc.offset[k];
|
||||
if (ctx.is_egcm() && n.bc.resource_index_mode)
|
||||
s << " RIM:SQ_CF_INDEX_" << n.bc.resource_index_mode;
|
||||
if (ctx.is_egcm() && n.bc.sampler_index_mode)
|
||||
s << " SID:SQ_CF_INDEX_" << n.bc.sampler_index_mode;
|
||||
}
|
||||
|
||||
sblog << s.str() << "\n";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue