diff options
author | Eric Anholt <eric@anholt.net> | 2009-01-15 09:31:55 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-01-21 11:49:18 -0800 |
commit | e1c2f5d7afbd29dfb6f1e24589e13729ac71a2a7 (patch) | |
tree | 660d08ec2491b8acc5d817edc7182b20561c9d87 /src | |
parent | 12ad7f650a01916fd05e0aee9a72f70b112e50a0 (diff) |
Fix invarient state emits for DRI2 (do it per batch, since there's no lock).
(cherry picked from commit cab5b7a7b0e17414f98b2363b0961c87f32f9c05)
Diffstat (limited to 'src')
-rw-r--r-- | src/i830_batchbuffer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/i830_batchbuffer.c b/src/i830_batchbuffer.c index b1c8a8de..671e8c87 100644 --- a/src/i830_batchbuffer.c +++ b/src/i830_batchbuffer.c @@ -117,6 +117,12 @@ intel_next_batch(ScrnInfoPtr pScrn) pI830->batch_used = 0; pI830->batch_ptr = pI830->batch_bo->virtual; + + /* If we are using DRI2, we don't know when another client has executed, + * so we have to reinitialize our 3D state per batch. + */ + if (pI830->directRenderingType == DRI_DRI2) + *pI830->last_3d = LAST_3D_OTHER; } void |