diff options
author | Eric Anholt <eric@anholt.net> | 2007-11-09 16:43:21 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-11-16 15:36:18 -0800 |
commit | df3c530bedd0ee59e0ae5c18a916f78fd3f7559a (patch) | |
tree | 1f477eb9d8c9961f52b010f797cd1ec27f31c49b /src/mesa/drivers/dri/i915 | |
parent | 8211b200268888e3d853ab24a5e4ebabd713d2e8 (diff) |
[i915] Push locking in intelClearWithTris down inside meta_draw_poly.
The lock coverage and checks for cliprects were unneeded since the batchbuffer
will have INTEL_BATCH_CLIPRECTS anyway. It appeared to be a leftover from
intelClearWithBlit.
This makes the locking requirements of i915 meta_draw_quad match i965
meta_draw_quad.
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r-- | src/mesa/drivers/dri/i915/intel_tris.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_tris.c b/src/mesa/drivers/dri/i915/intel_tris.c index 5fe3d4561f..67f02cfc3a 100644 --- a/src/mesa/drivers/dri/i915/intel_tris.c +++ b/src/mesa/drivers/dri/i915/intel_tris.c @@ -1072,6 +1072,8 @@ intel_meta_draw_poly(struct intel_context *intel, union fi *vb; GLint i; + LOCK_HARDWARE(intel); + /* All 3d primitives should be emitted with INTEL_BATCH_CLIPRECTS, * otherwise the drawing origin (DR4) might not be set correctly. */ @@ -1089,6 +1091,7 @@ intel_meta_draw_poly(struct intel_context *intel, } INTEL_FIREVERTICES(intel); + UNLOCK_HARDWARE(intel); } void |