From 1315f3b4b38cb569846389fe3080ffa8ac6946d9 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 14 Dec 2012 14:02:34 -0800 Subject: [PATCH] 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 --- src/mesa/drivers/dri/i965/brw_vtbl.c | 3 +++ 1 file changed, 3 insertions(+) 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); } -- 2.30.2