i965: Move cache_used_by_gpu flag setting to brw_finish_batch.
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 16 Oct 2013 02:21:34 +0000 (19:21 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 15 Nov 2013 18:24:07 +0000 (10:24 -0800)
It really makes more sense here.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/intel_batchbuffer.c

index 6d1ae7974261eadc04f55083e3b170442891015b..9cdbe9ee2773ebf373fde54fdd0f2b41de436014 100644 (file)
@@ -198,12 +198,6 @@ brw_new_batch(struct brw_context *brw)
 
    brw->ib.type = -1;
 
-   /* Mark that the current program cache BO has been used by the GPU.
-    * It will be reallocated if we need to put new programs in for the
-    * next batch.
-    */
-   brw->cache.bo_used_by_gpu = true;
-
    /* We need to periodically reap the shader time results, because rollover
     * happens every few seconds.  We also want to see results every once in a
     * while, because many programs won't cleanly destroy our context, so the
@@ -232,6 +226,12 @@ brw_finish_batch(struct brw_context *brw)
       drm_intel_bo_unreference(brw->curbe.curbe_bo);
       brw->curbe.curbe_bo = NULL;
    }
+
+   /* Mark that the current program cache BO has been used by the GPU.
+    * It will be reallocated if we need to put new programs in for the
+    * next batch.
+    */
+   brw->cache.bo_used_by_gpu = true;
 }
 
 /* TODO: Push this whole function into bufmgr.