mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-29 01:01:56 +00:00
*** empty log message ***
git-svn-id: https://glew.svn.sourceforge.net/svnroot/glew/trunk/glew@143 783a27ee-832a-0410-bc00-9f386506c6dd
This commit is contained in:
parent
9ea367626b
commit
4b596b1ac8
@ -101,13 +101,46 @@ 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;
|
int attrib[] = { GLX_RGBA, None };
|
||||||
|
int erb, evb;
|
||||||
|
XSetWindowAttributes swa;
|
||||||
|
/* open display */
|
||||||
|
dpy = XOpenDisplay(NULL);
|
||||||
|
if (NULL == dpy) return GL_TRUE;
|
||||||
|
/* query for glx */
|
||||||
|
if (!glXQueryExtension(dpy, &erb, &evb)) return GL_TRUE;
|
||||||
|
/* choose visual */
|
||||||
|
vi = glXChooseVisual(dpy, DefaultScreen(dpy), attrib);
|
||||||
|
if (NULL == vi) return GL_TRUE;
|
||||||
|
/* create context */
|
||||||
|
ctx = glXCreateContext(dpy, vi, None, True);
|
||||||
|
if (NULL == ctx) return GL_TRUE;
|
||||||
|
/* create window */
|
||||||
|
/*wnd = XCreateSimpleWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 1, 1, 1, 0, 0);*/
|
||||||
|
cmap = XCreateColormap(dpy, RootWindow(dpy, vi->screen), vi->visual, AllocNone);
|
||||||
|
swa.border_pixel = 0;
|
||||||
|
swa.colormap = cmap;
|
||||||
|
wnd = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 256, 256, 0, vi->depth, InputOutput, vi->visual, CWBorderPixel | CWColormap, &swa);
|
||||||
|
/* make context current */
|
||||||
|
if (!glXMakeCurrent(dpy, wnd, ctx)) return GL_TRUE;
|
||||||
|
return GL_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void glewDestroyContext ()
|
void glewDestroyContext ()
|
||||||
{
|
{
|
||||||
|
if (NULL != dpy && NULL != ctx) glXDestroyContext(dpy, ctx);
|
||||||
|
if (NULL != dpy) XDestroyWindow(dpy, wnd);
|
||||||
|
if (NULL != dpy) XFreeColormap(dpy, cmap);
|
||||||
|
if (NULL != vi) XFree(vi);
|
||||||
|
if (NULL != dpy) XCloseDisplay(dpy);
|
||||||
}
|
}
|
||||||
|
|
||||||
# else /* __linux || __sgi */
|
# else /* __linux || __sgi */
|
||||||
|
Loading…
Reference in New Issue
Block a user