mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-10 07:20:43 +02:00
When a context was made current to another surface, the old code did
this
dri2_dpy->core->bindContext(cctx, ddraw, rdraw);
dri2_dpy->core->unbindContext(old_cctx);
and there will be no current context due to the second line.
unbindContext should be called only when bindContext is not. This fixes
a regression since
|
||
|---|---|---|
| .. | ||
| dri2 | ||
| glx | ||
| Makefile | ||
| Makefile.template | ||