From: Kenneth Graunke Date: Sun, 12 Apr 2015 10:52:39 +0000 (-0700) Subject: i965: Fix INTEL_DEBUG=shader_time for SIMD8 VS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21d29124a719bdaf5794859a4a7441cc6be33df7;p=mesa.git 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 Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 5c475b2b738..8bd8da2389d 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();