From dc44372ba7ce4d068d87e983f37a2e31a61f8997 Mon Sep 17 00:00:00 2001 From: Aapo Tahkola Date: Fri, 28 Oct 2005 12:14:58 +0000 Subject: Fix texture mixup when two or more contexts. --- src/mesa/drivers/dri/r300/radeon_lock.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/mesa/drivers/dri/r300/radeon_lock.c') diff --git a/src/mesa/drivers/dri/r300/radeon_lock.c b/src/mesa/drivers/dri/r300/radeon_lock.c index 430083ef01..5f90f5f32e 100644 --- a/src/mesa/drivers/dri/r300/radeon_lock.c +++ b/src/mesa/drivers/dri/r300/radeon_lock.c @@ -41,6 +41,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "r200_state.h" #include "radeon_ioctl.h" #include "radeon_state.h" +#include "r300_context.h" #include "framebuffer.h" @@ -109,6 +110,8 @@ static void r200RegainedLock(r200ContextPtr r200) static void r300RegainedLock(radeonContextPtr radeon) { __DRIdrawablePrivate *dPriv = radeon->dri.drawable; + int i; + r300ContextPtr r300 = (r300ContextPtr)radeon; if (radeon->lastStamp != dPriv->lastStamp) { _mesa_resize_framebuffer(radeon->glCtx, @@ -126,11 +129,9 @@ static void r300RegainedLock(radeonContextPtr radeon) radeon->lastStamp = dPriv->lastStamp; } -#if R200_MERGED - for (i = 0; i < r200->nr_heaps; i++) { - DRI_AGE_TEXTURES(r200->texture_heaps[i]); + for (i = 0; i < r300->nr_heaps; i++) { + DRI_AGE_TEXTURES(r300->texture_heaps[i]); } -#endif } /* Update the hardware state. This is called if another context has -- cgit v1.2.3