summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_interpolation_map.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2013-12-23 00:56:20 -0800
committerEric Anholt <eric@anholt.net>2014-02-22 19:23:21 -0800
commit83daa88035af978c5158cfe5a196df45ce1555c1 (patch)
tree1d7cfa2f8c0450677acb5a488a9cc089df510bdb /src/mesa/drivers/dri/i965/brw_interpolation_map.c
parenta76e5dce4fc8d50f8699c108833f24e80167d706 (diff)
downloadexternal_mesa3d-83daa88035af978c5158cfe5a196df45ce1555c1.zip
external_mesa3d-83daa88035af978c5158cfe5a196df45ce1555c1.tar.gz
external_mesa3d-83daa88035af978c5158cfe5a196df45ce1555c1.tar.bz2
i965: Move the remaining driver debug over to stderr.
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_interpolation_map.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_interpolation_map.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_interpolation_map.c b/src/mesa/drivers/dri/i965/brw_interpolation_map.c
index 597fc96..e700108 100644
--- a/src/mesa/drivers/dri/i965/brw_interpolation_map.c
+++ b/src/mesa/drivers/dri/i965/brw_interpolation_map.c
@@ -85,18 +85,18 @@ brw_setup_vue_interpolation(struct brw_context *brw)
}
if (unlikely(INTEL_DEBUG & DEBUG_VUE)) {
- printf("VUE map:\n");
+ fprintf(stderr, "VUE map:\n");
for (int i = 0; i < vue_map->num_slots; i++) {
int varying = vue_map->slot_to_varying[i];
if (varying == -1) {
- printf("%d: --\n", i);
+ fprintf(stderr, "%d: --\n", i);
continue;
}
- printf("%d: %d %s ofs %d\n",
- i, varying,
- get_qual_name(brw->interpolation_mode.mode[i]),
- brw_vue_slot_to_offset(i));
+ fprintf(stderr, "%d: %d %s ofs %d\n",
+ i, varying,
+ get_qual_name(brw->interpolation_mode.mode[i]),
+ brw_vue_slot_to_offset(i));
}
}
}