From: Eric Anholt Date: Fri, 14 Dec 2012 22:02:34 +0000 (-0800) Subject: i965: Make sure that the shader_time report at context destroy happens. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1315f3b4b38cb569846389fe3080ffa8ac6946d9;p=mesa.git i965: Make sure that the shader_time report at context destroy happens. Otherwise, you end up with some report from within a second of context destroy, which is now what you really want for testing the impact of changes --- diff --git a/src/mesa/drivers/dri/i965/brw_vtbl.c b/src/mesa/drivers/dri/i965/brw_vtbl.c index f2f0e7b9590..237ec1ef78a 100644 --- a/src/mesa/drivers/dri/i965/brw_vtbl.c +++ b/src/mesa/drivers/dri/i965/brw_vtbl.c @@ -71,6 +71,9 @@ static void brw_destroy_context( struct intel_context *intel ) struct brw_context *brw = brw_context(&intel->ctx); if (INTEL_DEBUG & DEBUG_SHADER_TIME) { + /* Force a report. */ + brw->shader_time.report_time = 0; + brw_collect_and_report_shader_time(brw); brw_destroy_shader_time(brw); }