diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2004-12-29 21:17:06 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2004-12-29 21:17:06 +0000 |
commit | 5be14fd59a24612afd09da13688d611a1711d6da (patch) | |
tree | 26b559af8815b006de46711d10358a1f8a8176e4 /src/mesa/drivers/dri/unichrome/via_context.c | |
parent | 490e764d7affc093feff80192ed3f3d4642fcb8f (diff) |
Fix some wrapping bugs in the last commit. Probably there are more
remaining.
Diffstat (limited to 'src/mesa/drivers/dri/unichrome/via_context.c')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/via_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/unichrome/via_context.c b/src/mesa/drivers/dri/unichrome/via_context.c index b6c2c37aed..b3cc66f087 100644 --- a/src/mesa/drivers/dri/unichrome/via_context.c +++ b/src/mesa/drivers/dri/unichrome/via_context.c @@ -681,7 +681,7 @@ void viaGetLock(viaContextPtr vmesa, GLuint flags) if (vmesa->sarea->ctxOwner != vmesa->hHWContext) { vmesa->sarea->ctxOwner = vmesa->hHWContext; - vmesa->newState = ~0; + vmesa->newEmitState = ~0; } if (vmesa->lastStamp != dPriv->lastStamp) { |