On Mon, Oct 24, 2016 at 5:41 PM, Eric Engestrom <[email protected]> wrote: > CC: Rob Herring <[email protected]> > CC: Rob Clark <[email protected]> > Suggested-by: Emil Velikov <[email protected]> > Signed-off-by: Eric Engestrom <[email protected]>
Good, you beat me to it. Reviewed-by: Rob Herring <[email protected]> > --- > src/egl/drivers/dri2/egl_dri2_fallbacks.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/src/egl/drivers/dri2/egl_dri2_fallbacks.h > b/src/egl/drivers/dri2/egl_dri2_fallbacks.h > index e769af3..8dad271 100644 > --- a/src/egl/drivers/dri2/egl_dri2_fallbacks.h > +++ b/src/egl/drivers/dri2/egl_dri2_fallbacks.h > @@ -66,7 +66,8 @@ dri2_fallback_swap_buffers_with_damage(_EGLDriver *drv, > _EGLDisplay *dpy, > _EGLSurface *surf, > const EGLint *rects, EGLint n_rects) > { > - return EGL_FALSE; > + struct dri2_egl_display *dri2_dpy = dri2_egl_display(dpy); > + return dri2_dpy->vtbl->swap_buffers(drv, dpy, surf); > } > > static inline EGLBoolean > -- > Cheers, > Eric > _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
