diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-06-24 13:38:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-06-24 13:38:53 +0300 |
commit | c814609f6850c831adbd005ba6204b65dbaad096 (patch) | |
tree | eadb7cc5a540e7eb2de25529f65343dd9644adb5 /src/render/mglxtypes.h | |
parent | a199ee013ee9f0182e5e66d3a1477cb9483b994b (diff) | |
download | plus-c814609f6850c831adbd005ba6204b65dbaad096.tar.gz plus-c814609f6850c831adbd005ba6204b65dbaad096.tar.bz2 plus-c814609f6850c831adbd005ba6204b65dbaad096.tar.xz plus-c814609f6850c831adbd005ba6204b65dbaad096.zip |
Add glXSwapBuffers into GLX functions.
Diffstat (limited to 'src/render/mglxtypes.h')
-rw-r--r-- | src/render/mglxtypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/render/mglxtypes.h b/src/render/mglxtypes.h index d8d66bdab..52da8dcf5 100644 --- a/src/render/mglxtypes.h +++ b/src/render/mglxtypes.h @@ -44,6 +44,7 @@ typedef GLXFBConfig *(*glXChooseFBConfig_t) (Display *dpy, int screen, typedef void (*glXDestroyContext_t) (Display *dpy, void *ctx); typedef bool (*glXMakeCurrent_t) (Display *dpy, GLXDrawable drawable, void *ctx); +typedef void (*glXSwapBuffers_t) (Display *dpy, GLXDrawable drawable); #endif // USE_OPENGL #endif // RENDER_MGLXTYPES_H |