diff options
author | Chia-I Wu <[email protected]> | 2010-10-26 15:00:56 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-10-26 15:04:28 +0800 |
commit | 547e7619aac74ae13bdaa7fdf403a4ceb5212467 (patch) | |
tree | 69762191f5c28bf80fd254af70970d22eaec675c /src/egl | |
parent | d1acb920163ab0f39ff2fc72b85fc7bf16c37262 (diff) |
egl_dri2: Fix a typo that make glFlush be called at wrong time.
We want to call glFlush when there is a current context. That is,
old_ctx. This is a regression introduced by
d19afc57fe49816f3f3290410e0124d326577be2.
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/drivers/dri2/egl_dri2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/drivers/dri2/egl_dri2.c b/src/egl/drivers/dri2/egl_dri2.c index a5f95b944c5..51834d74e3d 100644 --- a/src/egl/drivers/dri2/egl_dri2.c +++ b/src/egl/drivers/dri2/egl_dri2.c @@ -1197,7 +1197,7 @@ dri2_make_current(_EGLDriver *drv, _EGLDisplay *disp, _EGLSurface *dsurf, return EGL_FALSE; /* flush before context switch */ - if (ctx && dri2_drv->glFlush) + if (old_ctx && dri2_drv->glFlush) dri2_drv->glFlush(); ddraw = (dri2_dsurf) ? dri2_dsurf->dri_drawable : NULL; |