1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
/* $XFree86: xc/lib/GL/mesa/src/drv/radeon/radeon_xmesa.c,v 1.3 2001/03/21 16:14:25 dawes Exp $ */
/**************************************************************************
Copyright 2000, 2001 ATI Technologies Inc., Ontario, Canada, and
VA Linux Systems Inc., Fremont, California.
All Rights Reserved.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
on the rights to use, copy, modify, merge, publish, distribute, sub
license, and/or sell copies of the Software, and to permit persons to whom
the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice (including the next
paragraph) shall be included in all copies or substantial portions of the
Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
ATI, VA LINUX SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
USE OR OTHER DEALINGS IN THE SOFTWARE.
**************************************************************************/
/*
* Authors:
* Kevin E. Martin <martin@valinux.com>
* Gareth Hughes <gareth@valinux.com>
*
*/
#ifdef GLX_DIRECT_RENDERING
/* Radeon Mesa driver includes */
#include "radeon_context.h"
#include "radeon_ioctl.h"
#include "radeon_state.h"
#include "radeon_tex.h"
/* Mesa src includes */
#include "context.h"
#include "simple_list.h"
#include "mmath.h"
extern void __driRegisterExtensions( void );
static radeonContextPtr radeonCtx = NULL;
/* Initialize the driver specific screen private data.
*/
GLboolean XMesaInitDriver( __DRIscreenPrivate *sPriv )
{
sPriv->private = (void *) radeonCreateScreen( sPriv );
/* Check the DRI version */
{
int major, minor, patch;
if ( XF86DRIQueryVersion( sPriv->display, &major, &minor, &patch ) ) {
if ( major != 4 || minor < 0 ) {
char msg[128];
sprintf( msg, "RADEON DRI driver expected DRI version 4.0.x but got version %d.%d.%d", major, minor, patch );
__driMesaMessage( msg );
return GL_FALSE;
}
}
}
/* Check that the DDX driver version is compatible */
if ( sPriv->ddxMajor != 4 ||
sPriv->ddxMinor < 0 ) {
char msg[128];
sprintf( msg, "RADEON DRI driver expected DDX driver version 4.0.x but got version %d.%d.%d", sPriv->ddxMajor, sPriv->ddxMinor, sPriv->ddxPatch );
__driMesaMessage( msg );
return GL_FALSE;
}
/* Check that the DRM driver version is compatible */
if ( sPriv->drmMajor != 1 ||
sPriv->drmMinor < 0 ) {
char msg[128];
sprintf( msg, "RADEON DRI driver expected DRM driver version 1.0.x but got version %d.%d.%d", sPriv->drmMajor, sPriv->drmMinor, sPriv->drmPatch );
__driMesaMessage( msg );
return GL_FALSE;
}
if ( !sPriv->private ) {
radeonDestroyScreen( sPriv );
return GL_FALSE;
}
return GL_TRUE;
}
/* Reset the driver specific screen private data.
*/
void XMesaResetDriver( __DRIscreenPrivate *sPriv )
{
radeonDestroyScreen( sPriv );
}
/* Create and initialize the Mesa and driver specific visual data.
*/
GLvisual *XMesaCreateVisual( Display *dpy,
__DRIscreenPrivate *driScrnPriv,
const XVisualInfo *visinfo,
const __GLXvisualConfig *config )
{
/* Drivers may change the args to _mesa_create_visual() in order to
* setup special visuals.
*/
return _mesa_create_visual( config->rgba,
config->doubleBuffer,
config->stereo,
_mesa_bitcount( visinfo->red_mask ),
_mesa_bitcount( visinfo->green_mask ),
_mesa_bitcount( visinfo->blue_mask ),
config->alphaSize,
0, /* index bits */
config->depthSize,
config->stencilSize,
config->accumRedSize,
config->accumGreenSize,
config->accumBlueSize,
config->accumAlphaSize,
0 /* num samples */);
}
/* Create and initialize the Mesa and driver specific context data.
*/
GLboolean XMesaCreateContext( Display *dpy, GLvisual *mesaVis,
__DRIcontextPrivate *driContextPriv )
{
return radeonCreateContext( dpy, mesaVis, driContextPriv );
}
/* Destroy the Mesa and driver specific context data.
*/
void XMesaDestroyContext( __DRIcontextPrivate *driContextPriv )
{
radeonContextPtr rmesa = (radeonContextPtr)driContextPriv->driverPrivate;
if ( rmesa == (void *)radeonCtx) radeonCtx = NULL;
radeonDestroyContext( rmesa );
}
/* Create and initialize the Mesa and driver specific pixmap buffer
* data.
*/
GLframebuffer *XMesaCreateWindowBuffer( Display *dpy,
__DRIscreenPrivate *driScrnPriv,
__DRIdrawablePrivate *driDrawPriv,
GLvisual *mesaVis )
{
return gl_create_framebuffer( mesaVis,
GL_FALSE, /* software depth buffer? */
mesaVis->StencilBits > 0,
mesaVis->AccumRedBits > 0,
GL_FALSE /* software alpha buffer? */ );
}
/* Create and initialize the Mesa and driver specific pixmap buffer
* data.
*/
GLframebuffer *XMesaCreatePixmapBuffer( Display *dpy,
__DRIscreenPrivate *driScrnPriv,
__DRIdrawablePrivate *driDrawPriv,
GLvisual *mesaVis )
{
#if 0
/* Different drivers may have different combinations of hardware and
* software ancillary buffers.
*/
return gl_create_framebuffer( mesaVis,
GL_FALSE, /* software depth buffer? */
mesaVis->StencilBits > 0,
mesaVis->AccumRedBits > 0,
mesaVis->AlphaBits > 0 );
#else
return NULL; /* not implemented yet */
#endif
}
/* Copy the back color buffer to the front color buffer.
*/
void XMesaSwapBuffers( __DRIdrawablePrivate *driDrawPriv )
{
/* FIXME: This assumes buffer is currently bound to a context. This
* needs to be able to swap buffers when not currently bound. Also,
* this needs to swap according to buffer, and NOT according to
* context!
*/
if ( radeonCtx == NULL ) return;
/* Only swap buffers when a back buffer exists.
*/
if ( radeonCtx->glCtx->Visual->DBflag ) {
FLUSH_VB( radeonCtx->glCtx, "swap buffers" );
if ( !radeonCtx->doPageFlip ) {
radeonSwapBuffers( radeonCtx );
} else {
radeonPageFlip( radeonCtx );
}
}
}
/* Force the context `c' to be the current context and associate with it
* buffer `b'.
*/
GLboolean XMesaMakeCurrent( __DRIcontextPrivate *driContextPriv,
__DRIdrawablePrivate *driDrawPriv,
__DRIdrawablePrivate *driReadPriv )
{
if ( driContextPriv ) {
radeonContextPtr rmesa = (radeonContextPtr)driContextPriv->driverPrivate;
radeonCtx = radeonMakeCurrent( radeonCtx, rmesa, driDrawPriv );
gl_make_current2( radeonCtx->glCtx,
driDrawPriv->mesaBuffer,
driReadPriv->mesaBuffer );
if ( radeonCtx->driDrawable != driDrawPriv ) {
radeonCtx->driDrawable = driDrawPriv;
radeonCtx->dirty = RADEON_UPLOAD_ALL;
}
/* GH: We need this to correctly calculate the window offset
* and aux scissor rects.
*/
radeonCtx->new_state = RADEON_NEW_WINDOW | RADEON_NEW_CLIP;
if ( !radeonCtx->glCtx->Viewport.Width ) {
gl_Viewport( radeonCtx->glCtx, 0, 0, driDrawPriv->w, driDrawPriv->h );
}
} else {
gl_make_current( 0, 0 );
radeonCtx = NULL;
}
return GL_TRUE;
}
/* Force the context `c' to be unbound from its buffer.
*/
GLboolean XMesaUnbindContext( __DRIcontextPrivate *driContextPriv )
{
return GL_TRUE;
}
/* This function is called by libGL.so as soon as libGL.so is loaded.
* This is where we'd register new extension functions with the dispatcher.
*/
void __driRegisterExtensions( void )
{
}
/* Initialize the fullscreen mode.
*/
GLboolean
XMesaOpenFullScreen( __DRIcontextPrivate *driContextPriv )
{
radeonContextPtr rmesa = (radeonContextPtr)driContextPriv->driverPrivate;
GLint ret;
/* FIXME: Do we need to check this?
*/
if ( !radeonCtx->glCtx->Visual->DBflag )
return GL_TRUE;
LOCK_HARDWARE( rmesa );
radeonWaitForIdleLocked( rmesa );
/* Ignore errors. If this fails, we simply don't do page flipping.
*/
ret = drmRadeonFullScreen( rmesa->driFd, GL_TRUE );
UNLOCK_HARDWARE( rmesa );
rmesa->doPageFlip = ( ret == 0 );
return GL_TRUE;
}
/* Shut down the fullscreen mode.
*/
GLboolean
XMesaCloseFullScreen( __DRIcontextPrivate *driContextPriv )
{
radeonContextPtr rmesa = (radeonContextPtr)driContextPriv->driverPrivate;
LOCK_HARDWARE( rmesa );
radeonWaitForIdleLocked( rmesa );
/* Don't care if this fails, we're not page flipping anymore.
*/
drmRadeonFullScreen( rmesa->driFd, GL_FALSE );
UNLOCK_HARDWARE( rmesa );
rmesa->doPageFlip = GL_FALSE;
rmesa->currentPage = 0;
return GL_TRUE;
}
#endif
|