diff options
author | Jon Smirl <[email protected]> | 2005-06-13 14:21:34 +0000 |
---|---|---|
committer | Jon Smirl <[email protected]> | 2005-06-13 14:21:34 +0000 |
commit | 6b9d9c503945f20fbf471ec9936e13a7bac6c60c (patch) | |
tree | 22f4cc5e735eee1a93c548c91485d89ac6cbdbe8 /src/mesa/drivers/dri/fb | |
parent | 2d218885ecb0bf82cbfd33da1b9186bf6e09375b (diff) |
fbSwapBuffers needs to return a status
Diffstat (limited to 'src/mesa/drivers/dri/fb')
-rw-r--r-- | src/mesa/drivers/dri/fb/fb_egl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/fb/fb_egl.c b/src/mesa/drivers/dri/fb/fb_egl.c index 977275c33c7..a04ac129fcd 100644 --- a/src/mesa/drivers/dri/fb/fb_egl.c +++ b/src/mesa/drivers/dri/fb/fb_egl.c @@ -836,7 +836,9 @@ fbSwapBuffers(_EGLDriver *drv, EGLDisplay dpy, EGLSurface draw) else { /* XXX this shouldn't be an error but we can't handle it for now */ _mesa_problem(NULL, "fbSwapBuffers: drawable has no context!\n"); + return EGL_FALSE; } + return EGL_TRUE; } |