Skip to content

Commit

Permalink
Version 4.6.12
Browse files Browse the repository at this point in the history
This changes the name of a parameter to something not related to a C++
keyword.
  • Loading branch information
mackron committed Aug 3, 2022
1 parent 42e66a0 commit 1d8380a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions glbind.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
OpenGL API loader. Choice of public domain or MIT-0. See license statements at the end of this file.
glbind - v4.6.11 - 2021-04-09
glbind - v4.6.12 - 2022-08-04

David Reid - davidreidsoftware@gmail.com
*/
Expand Down Expand Up @@ -19963,7 +19963,7 @@ PFNGLXGETPROCADDRESSPROC glbind_glXGetProcAddress;
static GLBhandle g_glbX11SO = NULL;
typedef Display* (* GLB_PFNXOPENDISPLAYPROC) (char* pDisplayName);
typedef int (* GLB_PFNXCLOSEDISPLAYPROC) (Display* pDisplay);
typedef Window (* GLB_PFNXCREATEWINDOWPROC) (Display *pDisplay, Window parent, int x, int y, unsigned int width, unsigned int height, unsigned int borderWidth, int depth, unsigned int class, Visual* pVisual, unsigned long valueMask, XSetWindowAttributes* pAttributes);
typedef Window (* GLB_PFNXCREATEWINDOWPROC) (Display *pDisplay, Window parent, int x, int y, unsigned int width, unsigned int height, unsigned int borderWidth, int depth, unsigned int windowClass, Visual* pVisual, unsigned long valueMask, XSetWindowAttributes* pAttributes);
typedef int (* GLB_PFNXDESTROYWINDOWPROC) (Display* pDisplay, Window window);
typedef Colormap (* GLB_PFNXCREATECOLORMAPPROC)(Display *pDisplay, Window window, Visual* pVisual, int alloc);
typedef int (* GLB_PFNXFREECOLORMAPPROC) (Display *pDisplay, Colormap colormap);
Expand Down
2 changes: 1 addition & 1 deletion source/glbind_template.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ PFNGLXGETPROCADDRESSPROC glbind_glXGetProcAddress;
static GLBhandle g_glbX11SO = NULL;
typedef Display* (* GLB_PFNXOPENDISPLAYPROC) (char* pDisplayName);
typedef int (* GLB_PFNXCLOSEDISPLAYPROC) (Display* pDisplay);
typedef Window (* GLB_PFNXCREATEWINDOWPROC) (Display *pDisplay, Window parent, int x, int y, unsigned int width, unsigned int height, unsigned int borderWidth, int depth, unsigned int class, Visual* pVisual, unsigned long valueMask, XSetWindowAttributes* pAttributes);
typedef Window (* GLB_PFNXCREATEWINDOWPROC) (Display *pDisplay, Window parent, int x, int y, unsigned int width, unsigned int height, unsigned int borderWidth, int depth, unsigned int windowClass, Visual* pVisual, unsigned long valueMask, XSetWindowAttributes* pAttributes);
typedef int (* GLB_PFNXDESTROYWINDOWPROC) (Display* pDisplay, Window window);
typedef Colormap (* GLB_PFNXCREATECOLORMAPPROC)(Display *pDisplay, Window window, Visual* pVisual, int alloc);
typedef int (* GLB_PFNXFREECOLORMAPPROC) (Display *pDisplay, Colormap colormap);
Expand Down

0 comments on commit 1d8380a

Please sign in to comment.