mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
glx: Check flush DRI extension version at runtime
The DRI driver itself might not have version 3 of the DRI2 flush extension, in which case this would've pointed to out of bounds memory...
This commit is contained in:
parent
31d27259b6
commit
a3e2c8f31f
1 changed files with 3 additions and 2 deletions
|
|
@ -679,7 +679,7 @@ dri2InvalidateBuffers(Display *dpy, XID drawable)
|
|||
struct dri2_drawable *pdp = (struct dri2_drawable *) pdraw;
|
||||
|
||||
#if __DRI2_FLUSH_VERSION >= 3
|
||||
if (pdraw && psc->f)
|
||||
if (pdraw && psc->f && psc->f->base.version >= 3 && psc->f->invalidate)
|
||||
psc->f->invalidate(pdp->driDrawable);
|
||||
#endif
|
||||
}
|
||||
|
|
@ -702,7 +702,8 @@ dri2_bind_tex_image(Display * dpy,
|
|||
psc = (struct dri2_screen *) base->psc;
|
||||
|
||||
#if __DRI2_FLUSH_VERSION >= 3
|
||||
if (!pdp->invalidateAvailable && psc->f)
|
||||
if (!pdp->invalidateAvailable && psc->f &&
|
||||
psc->f->base.version >= 3 && psc->f->invalidate)
|
||||
psc->f->invalidate(pdraw->driDrawable);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue