a5b30b06dc8f8806f7f235b83dbe898ea00e2038
[freeglut] / src / x11 / freeglut_ext_x11.c
1 /*\r
2  * freeglut_ext.c\r
3  *\r
4  * Functions related to OpenGL extensions.\r
5  *\r
6  * Copyright (c) 1999-2000 Pawel W. Olszta. All Rights Reserved.\r
7  * Written by Pawel W. Olszta, <olszta@sourceforge.net>\r
8  * Copied for Platform code by Evan Felix <karcaw at gmail.com>\r
9  * Creation date: Thur Feb 2 2012\r
10  *\r
11  * Permission is hereby granted, free of charge, to any person obtaining a\r
12  * copy of this software and associated documentation files (the "Software"),\r
13  * to deal in the Software without restriction, including without limitation\r
14  * the rights to use, copy, modify, merge, publish, distribute, sublicense,\r
15  * and/or sell copies of the Software, and to permit persons to whom the\r
16  * Software is furnished to do so, subject to the following conditions:\r
17  *\r
18  * The above copyright notice and this permission notice shall be included\r
19  * in all copies or substantial portions of the Software.\r
20  *\r
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS\r
22  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
23  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL\r
24  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
25  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
27  */\r
28 \r
29 #define GLX_GLXEXT_PROTOTYPES\r
30 #include <GL/freeglut.h>\r
31 #include "../Common/freeglut_internal.h"\r
32 \r
33 GLUTproc fgPlatformGetGLUTProcAddress( const char* procName )\r
34 {\r
35     /* optimization: quick initial check */\r
36     if( strncmp( procName, "glut", 4 ) != 0 )\r
37         return NULL;\r
38 \r
39 #define CHECK_NAME(x) if( strcmp( procName, #x ) == 0) return (GLUTproc)x;\r
40     CHECK_NAME(glutJoystickFunc);\r
41     CHECK_NAME(glutForceJoystickFunc);\r
42     CHECK_NAME(glutGameModeString);\r
43     CHECK_NAME(glutEnterGameMode);\r
44     CHECK_NAME(glutLeaveGameMode);\r
45     CHECK_NAME(glutGameModeGet);\r
46 #undef CHECK_NAME\r
47 \r
48     return NULL;\r
49 }\r
50 \r
51 \r
52 SFG_Proc fgPlatformGetProcAddress( const char *procName )\r
53 {\r
54 #if defined( GLX_ARB_get_proc_address )\r
55     return (SFG_Proc)glXGetProcAddressARB( ( const GLubyte * )procName );\r
56 #else\r
57     return NULL;\r
58 #endif\r
59 }\r
60 \r