diff options
author | Xiang, Haihao <[email protected]> | 2007-08-29 15:11:10 -0400 |
---|---|---|
committer | Xiang, Haihao <[email protected]> | 2007-08-29 15:11:10 -0400 |
commit | bad6e175cf59cce630c37d73f6e71f3a4de50ae6 (patch) | |
tree | 87078b6e05a6113715a2d7768083c32f2b2dedad /src/mesa/drivers/dri/i965/intel_context.c | |
parent | f6a89e1884535a6136900febc163ee930c1d2179 (diff) |
i965: store read drawable info in intel_context. Some OpenGL
operations are based on read drawable. fix bug#10136.
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_context.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_context.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_context.c b/src/mesa/drivers/dri/i965/intel_context.c index eafe809d3ad..1fbf571184e 100644 --- a/src/mesa/drivers/dri/i965/intel_context.c +++ b/src/mesa/drivers/dri/i965/intel_context.c @@ -576,6 +576,10 @@ GLboolean intelMakeCurrent(__DRIcontextPrivate *driContextPriv, if (driContextPriv) { struct intel_context *intel = (struct intel_context *) driContextPriv->driverPrivate; + if (intel->driReadDrawable != driReadPriv) { + intel->driReadDrawable = driReadPriv; + } + if ( intel->driDrawable != driDrawPriv ) { /* Shouldn't the readbuffer be stored also? */ driDrawableInitVBlank( driDrawPriv, intel->vblank_flags, |