Mercurial > sdl-ios-xcode
annotate src/video/x11/SDL_x11gl_c.h @ 1312:c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
I batch edited these files, so please let me know if I've accidentally removed anybody's
credit here.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 01 Feb 2006 06:32:25 +0000 |
parents | 2bd4cec0de63 |
children | e94b0d7c33bc |
rev | line source |
---|---|
0 | 1 /* |
2 SDL - Simple DirectMedia Layer | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
3 Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
5 This library is free software; you can redistribute it and/or | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
6 modify it under the terms of the GNU Lesser General Public |
0 | 7 License as published by the Free Software Foundation; either |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
8 version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
10 This library is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
13 Lesser General Public License for more details. |
0 | 14 |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
15 You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
16 License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1191
diff
changeset
|
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
19 Sam Lantinga | |
252
e8157fcb3114
Updated the source with the correct e-mail address
Sam Lantinga <slouken@libsdl.org>
parents:
110
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
23 #ifdef HAVE_OPENGL_X11 |
0 | 24 #include <GL/glx.h> |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
25 #ifdef USE_DLOPEN |
0 | 26 #include <dlfcn.h> |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
27 #else |
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
28 #include "SDL_loadso.h" |
110
7edee9f0f2cc
SDL GL dynamic loading fix for OpenBSD
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
29 #endif |
0 | 30 #endif |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
31 |
0 | 32 #include "SDL_sysvideo.h" |
33 | |
34 struct SDL_PrivateGLData { | |
35 int gl_active; /* to stop switching drivers while we have a valid context */ | |
36 | |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
37 #ifdef HAVE_OPENGL_X11 |
0 | 38 GLXContext glx_context; /* Current GL context */ |
39 XVisualInfo* glx_visualinfo; /* XVisualInfo* returned by glXChooseVisual */ | |
40 | |
41 void * (*glXGetProcAddress)(const GLubyte *procName); | |
42 | |
43 XVisualInfo* (*glXChooseVisual) | |
44 ( Display* dpy, | |
45 int screen, | |
46 int* attribList ); | |
47 | |
48 GLXContext (*glXCreateContext) | |
49 ( Display* dpy, | |
50 XVisualInfo* vis, | |
51 GLXContext shareList, | |
52 Bool direct ); | |
53 | |
54 void (*glXDestroyContext) | |
55 ( Display* dpy, | |
56 GLXContext ctx ); | |
57 | |
58 Bool (*glXMakeCurrent) | |
59 ( Display* dpy, | |
60 GLXDrawable drawable, | |
61 GLXContext ctx ); | |
62 | |
63 void (*glXSwapBuffers) | |
64 ( Display* dpy, | |
65 GLXDrawable drawable ); | |
66 | |
67 int (*glXGetConfig) | |
68 ( Display* dpy, | |
69 XVisualInfo* visual_info, | |
70 int attrib, | |
71 int* value ); | |
72 | |
73 void (*glXReleaseBuffersMESA) | |
74 ( Display* dpy, | |
75 GLXDrawable drawable ); | |
76 | |
646
0f2029a70548
Fixed incorrect prototype for glXQueryExtensionsString()
Sam Lantinga <slouken@libsdl.org>
parents:
638
diff
changeset
|
77 const char *(*glXQueryExtensionsString) |
638
b0108e9dea53
Date: Sun, 11 May 2003 19:59:06 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
78 ( Display* dpy, |
b0108e9dea53
Date: Sun, 11 May 2003 19:59:06 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
79 int screen); |
b0108e9dea53
Date: Sun, 11 May 2003 19:59:06 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
80 |
b0108e9dea53
Date: Sun, 11 May 2003 19:59:06 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
81 |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
82 #endif /* HAVE_OPENGL_X11 */ |
0 | 83 }; |
84 | |
85 /* Old variable names */ | |
86 #define gl_active (this->gl_data->gl_active) | |
87 #define glx_context (this->gl_data->glx_context) | |
88 #define glx_visualinfo (this->gl_data->glx_visualinfo) | |
89 | |
90 /* OpenGL functions */ | |
91 extern XVisualInfo *X11_GL_GetVisual(_THIS); | |
92 extern int X11_GL_CreateWindow(_THIS, int w, int h); | |
93 extern int X11_GL_CreateContext(_THIS); | |
94 extern void X11_GL_Shutdown(_THIS); | |
1191
2bd4cec0de63
Seperate glX from HAVE_OPENGL, for platforms that have both an X server and
Ryan C. Gordon <icculus@icculus.org>
parents:
769
diff
changeset
|
95 #ifdef HAVE_OPENGL_X11 |
0 | 96 extern int X11_GL_MakeCurrent(_THIS); |
97 extern int X11_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value); | |
98 extern void X11_GL_SwapBuffers(_THIS); | |
99 extern int X11_GL_LoadLibrary(_THIS, const char* path); | |
100 extern void *X11_GL_GetProcAddress(_THIS, const char* proc); | |
101 #endif | |
102 extern void X11_GL_UnloadLibrary(_THIS); | |
103 |