Skip to content

Commit

Permalink
Fixed name of eglCreatePbufferSurface function
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Dec 4, 2017
1 parent e943d1c commit 67950e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/video/SDL_egl.c
Expand Up @@ -375,7 +375,7 @@ SDL_EGL_LoadLibrary(_THIS, const char *egl_path, NativeDisplayType native_displa
LOAD_FUNC(eglGetConfigAttrib);
LOAD_FUNC(eglCreateContext);
LOAD_FUNC(eglDestroyContext);
LOAD_FUNC(eglCreatePBufferSurface);
LOAD_FUNC(eglCreatePbufferSurface);
LOAD_FUNC(eglCreateWindowSurface);
LOAD_FUNC(eglDestroySurface);
LOAD_FUNC(eglMakeCurrent);
Expand Down
2 changes: 1 addition & 1 deletion src/video/SDL_egl_c.h
Expand Up @@ -62,7 +62,7 @@ typedef struct SDL_EGL_VideoData

EGLBoolean(EGLAPIENTRY *eglDestroyContext) (EGLDisplay dpy, EGLContext ctx);

EGLSurface(EGLAPIENTRY *eglCreatePBufferSurface)(EGLDisplay dpy, EGLConfig config,
EGLSurface(EGLAPIENTRY *eglCreatePbufferSurface)(EGLDisplay dpy, EGLConfig config,
EGLint const* attrib_list);

EGLSurface(EGLAPIENTRY *eglCreateWindowSurface) (EGLDisplay dpy,
Expand Down

0 comments on commit 67950e1

Please sign in to comment.