mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-22 13:55:07 +00:00
*** empty log message ***
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@142 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
parent
45c664f2e6
commit
9ea367626b
@ -101,12 +101,6 @@ void glewDestroyContext ()
|
|||||||
|
|
||||||
# ifdef __APPLE__
|
# ifdef __APPLE__
|
||||||
|
|
||||||
Display* dpy = NULL;
|
|
||||||
XVisualInfo* vi = NULL;
|
|
||||||
GLXContext ctx = NULL;
|
|
||||||
Window wnd;
|
|
||||||
Colormap cmap;
|
|
||||||
|
|
||||||
GLboolean glewCreateContext ()
|
GLboolean glewCreateContext ()
|
||||||
{
|
{
|
||||||
return GL_TRUE;
|
return GL_TRUE;
|
||||||
@ -147,8 +141,7 @@ GLboolean glewCreateContext ()
|
|||||||
cmap = XCreateColormap(dpy, RootWindow(dpy, vi->screen), vi->visual, AllocNone);
|
cmap = XCreateColormap(dpy, RootWindow(dpy, vi->screen), vi->visual, AllocNone);
|
||||||
swa.border_pixel = 0;
|
swa.border_pixel = 0;
|
||||||
swa.colormap = cmap;
|
swa.colormap = cmap;
|
||||||
wnd = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 256, 256, 0, vi->depth,
|
wnd = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 256, 256, 0, vi->depth, InputOutput, vi->visual, CWBorderPixel | CWColormap, &swa);
|
||||||
InputOutput, vi->visual, CWBorderPixel | CWColormap, &swa);
|
|
||||||
/* make context current */
|
/* make context current */
|
||||||
if (!glXMakeCurrent(dpy, wnd, ctx)) return GL_TRUE;
|
if (!glXMakeCurrent(dpy, wnd, ctx)) return GL_TRUE;
|
||||||
return GL_FALSE;
|
return GL_FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user