Mesa (master): i965: Print VS output VUE map in Vulkan too.

Kenneth Graunke kwg at kemper.freedesktop.org
Thu Jan 5 09:58:32 UTC 2017


Module: Mesa
Branch: master
Commit: 7c6b714cd0fe06044c9a810186f5ce3690152574
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7c6b714cd0fe06044c9a810186f5ce3690152574

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Wed Jan  4 17:52:38 2017 -0800

i965: Print VS output VUE map in Vulkan too.

We need to move this to the shared layer.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Timothy Arceri <timothy.arceri at collabora.com>

---

 src/mesa/drivers/dri/i965/brw_vec4.cpp | 5 +++++
 src/mesa/drivers/dri/i965/brw_vs.c     | 3 ---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp b/src/mesa/drivers/dri/i965/brw_vec4.cpp
index f096ce9..b5e846d 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp
@@ -2786,6 +2786,11 @@ brw_compile_vs(const struct brw_compiler *compiler, void *log_data,
    else
       prog_data->base.urb_entry_size = DIV_ROUND_UP(vue_entries, 4);
 
+   if (INTEL_DEBUG & DEBUG_VS) {
+      fprintf(stderr, "VS Output ");
+      brw_print_vue_map(stderr, &prog_data->base.vue_map);
+   }
+
    if (is_scalar) {
       prog_data->base.dispatch_mode = DISPATCH_MODE_SIMD8;
 
diff --git a/src/mesa/drivers/dri/i965/brw_vs.c b/src/mesa/drivers/dri/i965/brw_vs.c
index ede6097..9d219fd 100644
--- a/src/mesa/drivers/dri/i965/brw_vs.c
+++ b/src/mesa/drivers/dri/i965/brw_vs.c
@@ -169,9 +169,6 @@ brw_codegen_vs_prog(struct brw_context *brw,
    if (unlikely(INTEL_DEBUG & DEBUG_VS)) {
       if (!prog)
          brw_dump_arb_asm("vertex", &vp->program);
-
-      fprintf(stderr, "VS Output ");
-      brw_print_vue_map(stderr, &prog_data.base.vue_map);
    }
 
    int st_index = -1;




More information about the mesa-commit mailing list