summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2010-07-01 14:14:52 (GMT)
committerSamuel Rødal <samuel.rodal@nokia.com>2010-07-01 14:19:12 (GMT)
commit2113140dc2a6a2e5b4f5ce62a678192907adcca1 (patch)
treec831204d4586d0fa8261a87c3f6382a3b41eb476 /src
parent844472273a17c74494d1d98a4f4110c21fb79a0c (diff)
downloadQt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.zip
Qt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.tar.gz
Qt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.tar.bz2
Added missing EGL stub function.
Reviewed-by: Shane Kearns
Diffstat (limited to 'src')
-rw-r--r--src/gui/egl/qegl_stub.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gui/egl/qegl_stub.cpp b/src/gui/egl/qegl_stub.cpp
index 86a7aab..e7bb748 100644
--- a/src/gui/egl/qegl_stub.cpp
+++ b/src/gui/egl/qegl_stub.cpp
@@ -208,6 +208,15 @@ EGLBoolean QEgl::eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
return 0;
}
+EGLBoolean QEgl::eglSwapBuffersRegion2NOK(EGLDisplay dpy, EGLSurface surface, EGLint count, const EGLint *rects)
+{
+ Q_UNUSED(dpy);
+ Q_UNUSED(surface);
+ Q_UNUSED(count);
+ Q_UNUSED(rects);
+ NOEGL
+ return 0;
+}
#ifndef Q_WS_X11
EGLSurface QEgl::createSurface(QPaintDevice *device, EGLConfig cfg, const QEglProperties *properties)