diff options
author | Kenneth Graunke <[email protected]> | 2013-10-15 15:55:42 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-10-17 14:27:03 -0700 |
commit | 6613f346acc54a161046ee77e4a017c3e3d1a99f (patch) | |
tree | 5ba50e2eb70b63d9c689967fe31aacafd70f2536 /src/mesa/drivers/dri/i965/brw_vtbl.c | |
parent | e2d1eaa32a83204646bcccc029fdd31dbaee6d5e (diff) |
i965: Un-virtualize brw_finish_batch().
Since the i915/i965 split, there's only one implementation of this
virtual function. We may as well just call it directly.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vtbl.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_vtbl.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vtbl.c b/src/mesa/drivers/dri/i965/brw_vtbl.c index ea156a82b13..0f7671bd929 100644 --- a/src/mesa/drivers/dri/i965/brw_vtbl.c +++ b/src/mesa/drivers/dri/i965/brw_vtbl.c @@ -91,27 +91,6 @@ brw_destroy_context(struct brw_context *brw) } /** - * called from intel_batchbuffer_flush and children before sending a - * batchbuffer off. - * - * Note that ALL state emitted here must fit in the reserved space - * at the end of a batchbuffer. If you add more GPU state, increase - * the BATCH_RESERVED macro. - */ -static void -brw_finish_batch(struct brw_context *brw) -{ - brw_emit_query_end(brw); - - if (brw->curbe.curbe_bo) { - drm_intel_gem_bo_unmap_gtt(brw->curbe.curbe_bo); - drm_intel_bo_unreference(brw->curbe.curbe_bo); - brw->curbe.curbe_bo = NULL; - } -} - - -/** * called from intelFlushBatchLocked */ static void @@ -155,7 +134,6 @@ brw_new_batch(struct brw_context *brw) void brwInitVtbl( struct brw_context *brw ) { brw->vtbl.new_batch = brw_new_batch; - brw->vtbl.finish_batch = brw_finish_batch; brw->vtbl.destroy = brw_destroy_context; assert(brw->gen >= 4); |