Skip to content

Latest commit

 

History

History
217 lines (189 loc) · 5.26 KB

SDL_cgxgl.c

File metadata and controls

217 lines (189 loc) · 5.26 KB
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
SDL - Simple DirectMedia Layer
Copyright (C) 1997, 1998, 1999, 2000, 2001 Sam Lantinga
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Apr 26, 2001
Apr 26, 2001
21
22
23
24
25
26
27
*/
#ifdef SAVE_RCSID
static char rcsid =
"@(#) $Id$";
#endif
Dec 16, 2001
Dec 16, 2001
28
/* StormMesa implementation of SDL OpenGL support */
Apr 26, 2001
Apr 26, 2001
29
30
31
#include "SDL_error.h"
#include "SDL_cgxgl_c.h"
Dec 16, 2001
Dec 16, 2001
32
#include "SDL_cgxvideo.h"
Apr 26, 2001
Apr 26, 2001
33
Dec 16, 2001
Dec 16, 2001
34
35
36
#ifdef HAVE_OPENGL
AmigaMesaContext glcont=NULL;
#endif
Apr 26, 2001
Apr 26, 2001
37
Dec 16, 2001
Dec 16, 2001
38
39
/* Init OpenGL */
int CGX_GL_Init(_THIS)
Apr 26, 2001
Apr 26, 2001
40
41
{
#ifdef HAVE_OPENGL
Dec 16, 2001
Dec 16, 2001
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
int i = 0;
struct TagItem attributes [ 14 ]; /* 14 should be more than enough :) */
struct Window *win = (struct Window *)SDL_Window;
// default config. Always used...
attributes[i].ti_Tag = AMA_Window; attributes[i++].ti_Data = (unsigned long)win;
attributes[i].ti_Tag = AMA_Left; attributes[i++].ti_Data = 0;
attributes[i].ti_Tag = AMA_Bottom; attributes[i++].ti_Data = 0;
attributes[i].ti_Tag = AMA_Width; attributes[i++].ti_Data = win->Width-win->BorderLeft-win->BorderRight;
attributes[i].ti_Tag = AMA_Height; attributes[i++].ti_Data = win->Height-win->BorderBottom-win->BorderTop;
attributes[i].ti_Tag = AMA_DirectRender; attributes[i++].ti_Data = GL_TRUE;
// double buffer ?
attributes[i].ti_Tag = AMA_DoubleBuf;
if ( this->gl_config.double_buffer ) {
attributes[i++].ti_Data = GL_TRUE;
}
else {
attributes[i++].ti_Data = GL_FALSE;
}
// RGB(A) Mode ?
attributes[i].ti_Tag = AMA_RGBMode;
if ( this->gl_config.red_size != 0 &&
this->gl_config.blue_size != 0 &&
this->gl_config.green_size != 0 ) {
attributes[i++].ti_Data = GL_TRUE;
}
else {
attributes[i++].ti_Data = GL_FALSE;
}
// no depth buffer ?
if ( this->gl_config.depth_size == 0 ) {
attributes[i].ti_Tag = AMA_NoDepth;
attributes[i++].ti_Data = GL_TRUE;
}
// no stencil buffer ?
if ( this->gl_config.stencil_size == 0 ) {
attributes[i].ti_Tag = AMA_NoStencil;
attributes[i++].ti_Data = GL_TRUE;
}
// no accum buffer ?
if ( this->gl_config.accum_red_size != 0 &&
this->gl_config.accum_blue_size != 0 &&
this->gl_config.accum_green_size != 0 ) {
attributes[i].ti_Tag = AMA_NoAccum;
attributes[i++].ti_Data = GL_TRUE;
}
// done...
attributes[i].ti_Tag = TAG_DONE;
glcont = AmigaMesaCreateContext(attributes);
if ( glcont == NULL ) {
SDL_SetError("Couldn't create OpenGL context");
return(-1);
Apr 26, 2001
Apr 26, 2001
96
}
Dec 16, 2001
Dec 16, 2001
97
98
this->gl_data->gl_active = 1;
this->gl_config.driver_loaded = 1;
Apr 26, 2001
Apr 26, 2001
99
Dec 16, 2001
Dec 16, 2001
100
return(0);
Apr 26, 2001
Apr 26, 2001
101
#else
Dec 16, 2001
Dec 16, 2001
102
103
SDL_SetError("OpenGL support not configured");
return(-1);
Apr 26, 2001
Apr 26, 2001
104
105
106
#endif
}
Dec 16, 2001
Dec 16, 2001
107
108
/* Quit OpenGL */
void CGX_GL_Quit(_THIS)
Apr 26, 2001
Apr 26, 2001
109
110
{
#ifdef HAVE_OPENGL
Dec 16, 2001
Dec 16, 2001
111
112
113
114
115
if ( glcont != NULL ) {
AmigaMesaDestroyContext(glcont);
glcont = NULL;
this->gl_data->gl_active = 0;
this->gl_config.driver_loaded = 0;
Apr 26, 2001
Apr 26, 2001
116
117
118
119
}
#endif
}
Dec 16, 2001
Dec 16, 2001
120
121
/* Attach context to another window */
int CGX_GL_Update(_THIS)
Apr 26, 2001
Apr 26, 2001
122
123
{
#ifdef HAVE_OPENGL
Dec 16, 2001
Dec 16, 2001
124
125
126
127
struct TagItem tags[2];
struct Window *win = (struct Window*)SDL_Window;
if(glcont == NULL) {
return -1; //should never happen
Apr 26, 2001
Apr 26, 2001
128
}
Dec 16, 2001
Dec 16, 2001
129
130
131
132
tags[0].ti_Tag = AMA_Window;
tags[0].ti_Data = (unsigned long)win;
tags[1].ti_Tag = TAG_DONE;
AmigaMesaSetRast(glcont, tags);
Apr 26, 2001
Apr 26, 2001
133
Dec 16, 2001
Dec 16, 2001
134
return 0;
Apr 26, 2001
Apr 26, 2001
135
#else
Dec 16, 2001
Dec 16, 2001
136
137
SDL_SetError("OpenGL support not configured");
return -1;
Apr 26, 2001
Apr 26, 2001
138
139
140
141
142
143
144
145
#endif
}
#ifdef HAVE_OPENGL
/* Make the current context active */
int CGX_GL_MakeCurrent(_THIS)
{
Dec 16, 2001
Dec 16, 2001
146
147
if(glcont == NULL)
return -1;
Apr 26, 2001
Apr 26, 2001
148
Dec 16, 2001
Dec 16, 2001
149
150
AmigaMesaMakeCurrent(glcont, glcont->buffer);
return 0;
Apr 26, 2001
Apr 26, 2001
151
152
153
154
}
void CGX_GL_SwapBuffers(_THIS)
{
Dec 16, 2001
Dec 16, 2001
155
AmigaMesaSwapBuffers(glcont);
Apr 26, 2001
Apr 26, 2001
156
157
}
Dec 16, 2001
Dec 16, 2001
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
int CGX_GL_GetAttribute(_THIS, SDL_GLattr attrib, int* value) {
GLenum mesa_attrib;
switch(attrib) {
case SDL_GL_RED_SIZE:
mesa_attrib = GL_RED_BITS;
break;
case SDL_GL_GREEN_SIZE:
mesa_attrib = GL_GREEN_BITS;
break;
case SDL_GL_BLUE_SIZE:
mesa_attrib = GL_BLUE_BITS;
break;
case SDL_GL_ALPHA_SIZE:
mesa_attrib = GL_ALPHA_BITS;
break;
case SDL_GL_DOUBLEBUFFER:
mesa_attrib = GL_DOUBLEBUFFER;
break;
case SDL_GL_DEPTH_SIZE:
mesa_attrib = GL_DEPTH_BITS;
break;
case SDL_GL_STENCIL_SIZE:
mesa_attrib = GL_STENCIL_BITS;
break;
case SDL_GL_ACCUM_RED_SIZE:
mesa_attrib = GL_ACCUM_RED_BITS;
break;
case SDL_GL_ACCUM_GREEN_SIZE:
mesa_attrib = GL_ACCUM_GREEN_BITS;
break;
case SDL_GL_ACCUM_BLUE_SIZE:
mesa_attrib = GL_ACCUM_BLUE_BITS;
break;
case SDL_GL_ACCUM_ALPHA_SIZE:
mesa_attrib = GL_ACCUM_ALPHA_BITS;
break;
default :
return -1;
}
AmigaMesaGetConfig(glcont->visual, mesa_attrib, value);
return 0;
Apr 26, 2001
Apr 26, 2001
201
202
}
Dec 16, 2001
Dec 16, 2001
203
204
205
206
void *CGX_GL_GetProcAddress(_THIS, const char *proc) {
void *func = NULL;
func = AmiGetGLProc(proc);
return func;
Apr 26, 2001
Apr 26, 2001
207
208
}
Dec 16, 2001
Dec 16, 2001
209
210
211
int CGX_GL_LoadLibrary(_THIS, const char *path) {
/* Library is always open */
this->gl_config.driver_loaded = 1;
Apr 26, 2001
Apr 26, 2001
212
Dec 16, 2001
Dec 16, 2001
213
return 0;
Apr 26, 2001
Apr 26, 2001
214
215
216
}
#endif /* HAVE_OPENGL */