Module: Mesa Branch: master Commit: 21d29124a719bdaf5794859a4a7441cc6be33df7 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=21d29124a719bdaf5794859a4a7441cc6be33df7
Author: Kenneth Graunke <[email protected]> Date: Sun Apr 12 03:52:39 2015 -0700 i965: Fix INTEL_DEBUG=shader_time for SIMD8 VS. In commit 4ebeb71573ad44f7657810dc5dd2c9030e3e63db, I deleted the emit_shader_time_end() call in emit_urb_writes(). But I failed to add it to run_vs(), as I intended. So no data was recorded at all. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]> --- src/mesa/drivers/dri/i965/brw_fs.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 5c475b2..8bd8da2 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -3877,6 +3877,9 @@ fs_visitor::run_vs() emit_urb_writes(); + if (INTEL_DEBUG & DEBUG_SHADER_TIME) + emit_shader_time_end(); + calculate_cfg(); optimize(); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
