diff options
author | Samuel Rødal <samuel.rodal@nokia.com> | 2010-07-01 14:14:52 (GMT) |
---|---|---|
committer | Samuel Rødal <samuel.rodal@nokia.com> | 2010-07-01 14:19:12 (GMT) |
commit | 2113140dc2a6a2e5b4f5ce62a678192907adcca1 (patch) | |
tree | c831204d4586d0fa8261a87c3f6382a3b41eb476 /src/gui/egl | |
parent | 844472273a17c74494d1d98a4f4110c21fb79a0c (diff) | |
download | Qt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.zip Qt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.tar.gz Qt-2113140dc2a6a2e5b4f5ce62a678192907adcca1.tar.bz2 |
Added missing EGL stub function.
Reviewed-by: Shane Kearns
Diffstat (limited to 'src/gui/egl')
-rw-r--r-- | src/gui/egl/qegl_stub.cpp | 9 |
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) |