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