diff options
author | Jason Ekstrand <[email protected]> | 2014-09-05 17:07:16 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-09-05 17:33:17 -0700 |
commit | ecf6c2675783d369385b32a859b01491fb7fcf12 (patch) | |
tree | 019de7c4bc58a819b8677c97d811d94ad9ffb3d6 | |
parent | 291ae622fd723d5ee2e08bbb8256c51bb5bce008 (diff) |
i965/fs: Don't look at virtual_grf_sizes for uniforms
Uniform values are in the UNIFORM register file, not the GRF register file.
Looking in virtual_grf_sizes makes no sense and only makes the output of
dump_instructions confusing.
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 20acafa52b4..a064390ce84 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -2920,8 +2920,7 @@ fs_visitor::dump_instruction(backend_instruction *be_inst, FILE *file) fprintf(file, "u%d", inst->src[i].reg + inst->src[i].reg_offset); if (inst->src[i].reladdr) { fprintf(file, "+reladdr"); - } else if (virtual_grf_sizes[inst->src[i].reg] != 1 || - inst->src[i].subreg_offset) { + } else if (inst->src[i].subreg_offset) { fprintf(file, "+%d.%d", inst->src[i].reg_offset, inst->src[i].subreg_offset); } |