Fix eglCreateWindowSurface function name at dlsym call.

This commit is contained in:
Janos Pantos
2017-02-23 18:21:34 +01:00
committed by Baldur Karlsson
parent 898e954965
commit 73ba1c140a
+1 -1
View File
@@ -238,7 +238,7 @@ public:
PFN_eglChooseConfig eglChooseConfig = (PFN_eglChooseConfig)dlsym(RTLD_NEXT, "eglChooseConfig");
PFN_eglCreateWindowSurface eglCreateWindowSurface =
(PFN_eglCreateWindowSurface)dlsym(RTLD_NEXT, "eglCreateWindowSurfaceProc");
(PFN_eglCreateWindowSurface)dlsym(RTLD_NEXT, "eglCreateWindowSurface");
PFN_eglCreatePbufferSurface eglCreatePbufferSurface =
(PFN_eglCreatePbufferSurface)dlsym(RTLD_NEXT, "eglCreatePbufferSurface");