diff options
author | Eric Anholt <[email protected]> | 2013-12-23 00:56:20 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2014-02-22 19:23:21 -0800 |
commit | 83daa88035af978c5158cfe5a196df45ce1555c1 (patch) | |
tree | 1d7cfa2f8c0450677acb5a488a9cc089df510bdb /src/mesa/drivers/dri/i965/brw_interpolation_map.c | |
parent | a76e5dce4fc8d50f8699c108833f24e80167d706 (diff) |
i965: Move the remaining driver debug over to stderr.
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_interpolation_map.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_interpolation_map.c | 12 |
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 597fc965f54..e700108d95e 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)); } } } |