]> git.mxchange.org Git - simgear.git/blob - simgear/screen/extensions.cxx
Add a function which might return whether a texture is in video memory, delete the...
[simgear.git] / simgear / screen / extensions.cxx
1 /*
2  *
3  * Copyright (c) 2001 César Blecua Udías    All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included
13  * in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18  * CESAR BLECUA UDIAS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
20  * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  *
23  */
24
25 #include <string.h>
26
27 #include "extensions.hxx"
28
29 bool SGSearchExtensionsString(char *extString, char *extName) {
30     // Returns GL_TRUE if the *extName string appears in the *extString string,
31     // surrounded by white spaces, or GL_FALSE otherwise.
32
33     char *p, *end;
34     int n, extNameLen;
35
36     extNameLen = strlen(extName);
37
38     p=extString;
39     end = p + strlen(p);
40
41     while (p < end) {
42         n = strcspn(p, " ");
43         if ((extNameLen == n) && (strncmp(extName, p, n) == 0))
44             return GL_TRUE;
45
46         p += (n + 1);
47     }
48
49     return GL_FALSE;
50 }
51
52 bool SGIsOpenGLExtensionSupported(char *extName) {
53    // Returns GL_TRUE if the OpenGL Extension whose name is *extName
54    // is supported by the system, or GL_FALSE otherwise.
55    //
56    // The *extName string must follow the OpenGL extensions naming scheme
57    // (ie: "GL_type_extension", like GL_EXT_convolution)
58
59     return SGSearchExtensionsString((char *)glGetString(GL_EXTENSIONS),
60 extName);
61 }
62
63 #ifdef __APPLE__
64
65 #include <CoreFoundation/CoreFoundation.h>
66
67 void* macosxGetGLProcAddress(const char *func) {
68
69   /* We may want to cache the bundleRef at some point */
70   static CFBundleRef bundle = 0;
71
72   if (!bundle) {
73
74     CFURLRef bundleURL = CFURLCreateWithFileSystemPath (kCFAllocatorDefault,
75                                                         CFSTR("/System/Library/Frameworks/OpenGL.framework"), kCFURLPOSIXPathStyle, true);
76
77     bundle = CFBundleCreate (kCFAllocatorDefault, bundleURL);
78     CFRelease (bundleURL);
79   }
80
81   if (!bundle)
82     return 0;
83
84   CFStringRef functionName = CFStringCreateWithCString
85     (kCFAllocatorDefault, func, kCFStringEncodingASCII);
86   
87   void *function;
88   
89   function = CFBundleGetFunctionPointerForName (bundle, functionName);
90
91   CFRelease (functionName);
92
93   return function;
94 }
95
96 #endif