Mercurial > sdl-ios-xcode
annotate src/video/maccommon/SDL_macgl.c @ 1361:19418e4422cb
New configure-based build system. Still work in progress, but much improved
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 16 Feb 2006 10:11:48 +0000 |
parents | c71e05b4dc2e |
children | d910939febfa |
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:
774
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:
774
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:
774
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:
774
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:
774
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:
774
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:
774
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:
0
diff
changeset
|
20 slouken@libsdl.org |
0 | 21 */ |
22 | |
23 /* AGL implementation of SDL OpenGL support */ | |
24 | |
25 #include "SDL_lowvideo.h" | |
26 #include "SDL_macgl_c.h" | |
774
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
27 #include "SDL_loadso.h" |
0 | 28 |
29 | |
30 /* krat: adding OpenGL support */ | |
31 int Mac_GL_Init(_THIS) | |
32 { | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
33 #if SDL_VIDEO_OPENGL |
0 | 34 AGLPixelFormat format; |
35 int i = 0; | |
36 GLint attributes [ 24 ]; /* 24 is max possible in this setup */ | |
37 GLboolean noerr; | |
38 | |
39 attributes[i++] = AGL_RGBA; | |
40 if ( this->gl_config.red_size != 0 && | |
41 this->gl_config.blue_size != 0 && | |
42 this->gl_config.green_size != 0 ) { | |
43 attributes[i++] = AGL_RED_SIZE; | |
44 attributes[i++] = this->gl_config.red_size; | |
45 attributes[i++] = AGL_GREEN_SIZE; | |
46 attributes[i++] = this->gl_config.green_size; | |
47 attributes[i++] = AGL_BLUE_SIZE; | |
48 attributes[i++] = this->gl_config.blue_size; | |
49 attributes[i++] = AGL_ALPHA_SIZE; | |
50 attributes[i++] = this->gl_config.alpha_size; | |
51 } | |
706
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
52 if ( this->gl_config.double_buffer ) { |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
53 attributes[i++] = AGL_DOUBLEBUFFER; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
54 } |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
55 if ( this->gl_config.depth_size != 0 ) { |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
56 attributes[i++] = AGL_DEPTH_SIZE; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
57 attributes[i++] = this->gl_config.depth_size; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
58 } |
0 | 59 if ( this->gl_config.stencil_size != 0 ) { |
60 attributes[i++] = AGL_STENCIL_SIZE; | |
61 attributes[i++] = this->gl_config.stencil_size; | |
62 } | |
63 if ( this->gl_config.accum_red_size != 0 && | |
64 this->gl_config.accum_blue_size != 0 && | |
65 this->gl_config.accum_green_size != 0 ) { | |
66 | |
67 attributes[i++] = AGL_ACCUM_RED_SIZE; | |
68 attributes[i++] = this->gl_config.accum_red_size; | |
69 attributes[i++] = AGL_ACCUM_GREEN_SIZE; | |
70 attributes[i++] = this->gl_config.accum_green_size; | |
71 attributes[i++] = AGL_ACCUM_BLUE_SIZE; | |
72 attributes[i++] = this->gl_config.accum_blue_size; | |
73 attributes[i++] = AGL_ACCUM_ALPHA_SIZE; | |
74 attributes[i++] = this->gl_config.accum_alpha_size; | |
75 } | |
706
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
76 if ( this->gl_config.stereo ) { |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
77 attributes[i++] = AGL_STEREO; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
78 } |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
79 #if defined(AGL_SAMPLE_BUFFERS_ARB) && defined(AGL_SAMPLES_ARB) |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
80 if ( this->gl_config.multisamplebuffers != 0 ) { |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
81 attributes[i++] = AGL_SAMPLE_BUFFERS_ARB; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
82 attributes[i++] = this->gl_config.multisamplebuffers; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
83 } |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
84 if ( this->gl_config.multisamplesamples != 0 ) { |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
85 attributes[i++] = AGL_SAMPLES_ARB; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
86 attributes[i++] = this->gl_config.multisamplesamples; |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
87 } |
a33b7819b917
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
656
diff
changeset
|
88 #endif |
0 | 89 attributes[i++] = AGL_ALL_RENDERERS; |
90 attributes[i] = AGL_NONE; | |
91 | |
92 format = aglChoosePixelFormat(NULL, 0, attributes); | |
93 if ( format == NULL ) { | |
94 SDL_SetError("Couldn't match OpenGL desired format"); | |
95 return(-1); | |
96 } | |
97 | |
98 glContext = aglCreateContext(format, NULL); | |
99 if ( glContext == NULL ) { | |
100 SDL_SetError("Couldn't create OpenGL context"); | |
101 return(-1); | |
102 } | |
103 aglDestroyPixelFormat(format); | |
104 | |
105 #if TARGET_API_MAC_CARBON | |
106 noerr = aglSetDrawable(glContext, GetWindowPort(SDL_Window)); | |
107 #else | |
108 noerr = aglSetDrawable(glContext, (AGLDrawable)SDL_Window); | |
109 #endif | |
110 | |
111 if(!noerr) { | |
112 SDL_SetError("Unable to bind GL context to window"); | |
113 return(-1); | |
114 } | |
115 return(0); | |
116 #else | |
117 SDL_SetError("OpenGL support not configured"); | |
118 return(-1); | |
119 #endif | |
120 } | |
121 | |
122 void Mac_GL_Quit(_THIS) | |
123 { | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
124 #if SDL_VIDEO_OPENGL |
0 | 125 if ( glContext != NULL ) { |
126 aglSetCurrentContext(NULL); | |
127 aglSetDrawable(glContext, NULL); | |
128 aglDestroyContext(glContext); | |
129 glContext = NULL; | |
130 } | |
131 #endif | |
132 } | |
133 | |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
134 #if SDL_VIDEO_OPENGL |
0 | 135 |
136 /* Make the current context active */ | |
137 int Mac_GL_MakeCurrent(_THIS) | |
138 { | |
139 int retval; | |
140 | |
141 retval = 0; | |
142 if( ! aglSetCurrentContext(glContext) ) { | |
143 SDL_SetError("Unable to make GL context current"); | |
144 retval = -1; | |
145 } | |
146 return(retval); | |
147 } | |
148 | |
149 void Mac_GL_SwapBuffers(_THIS) | |
150 { | |
151 aglSwapBuffers(glContext); | |
152 } | |
153 | |
774
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
154 int Mac_GL_LoadLibrary(_THIS, const char *location) |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
155 { |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
156 if (location == NULL) |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
157 location = "OpenGLLibrary"; |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
158 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
159 this->hidden->libraryHandle = SDL_LoadObject(location); |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
160 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
161 this->gl_config.driver_loaded = 1; |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
162 return (this->hidden->libraryHandle != NULL) ? 0 : -1; |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
163 } |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
164 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
165 void Mac_GL_UnloadLibrary(_THIS) |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
166 { |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
167 SDL_UnloadObject(this->hidden->libraryHandle); |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
168 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
169 this->hidden->libraryHandle = NULL; |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
170 this->gl_config.driver_loaded = 0; |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
171 } |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
172 |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
173 void* Mac_GL_GetProcAddress(_THIS, const char *proc) |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
174 { |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
175 return SDL_LoadFunction( this->hidden->libraryHandle, proc ); |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
176 } |
0c3e00cc9580
Date: Mon, 5 Jan 2004 00:09:36 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
177 |
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
178 #endif /* SDL_VIDEO_OPENGL */ |
0 | 179 |