Silence some compiler warnings.
[mesa.git] / src / mesa / drivers / dri / radeon / radeon_context.c
1 /* $XFree86: xc/lib/GL/mesa/src/drv/radeon/radeon_context.c,v 1.9 2003/09/24 02:43:12 dawes Exp $ */
2 /**************************************************************************
3
4 Copyright 2000, 2001 ATI Technologies Inc., Ontario, Canada, and
5 VA Linux Systems Inc., Fremont, California.
6
7 All Rights Reserved.
8
9 Permission is hereby granted, free of charge, to any person obtaining
10 a copy of this software and associated documentation files (the
11 "Software"), to deal in the Software without restriction, including
12 without limitation the rights to use, copy, modify, merge, publish,
13 distribute, sublicense, and/or sell copies of the Software, and to
14 permit persons to whom the Software is furnished to do so, subject to
15 the following conditions:
16
17 The above copyright notice and this permission notice (including the
18 next paragraph) shall be included in all copies or substantial
19 portions of the Software.
20
21 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
24 IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
25 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 **************************************************************************/
30
31 /*
32 * Authors:
33 * Kevin E. Martin <martin@valinux.com>
34 * Gareth Hughes <gareth@valinux.com>
35 * Keith Whitwell <keith@tungstengraphics.com>
36 */
37
38 #include "glheader.h"
39 #include "api_arrayelt.h"
40 #include "context.h"
41 #include "simple_list.h"
42 #include "imports.h"
43 #include "matrix.h"
44 #include "extensions.h"
45
46 #include "swrast/swrast.h"
47 #include "swrast_setup/swrast_setup.h"
48 #include "array_cache/acache.h"
49
50 #include "tnl/tnl.h"
51 #include "tnl/t_pipeline.h"
52
53 #include "drivers/common/driverfuncs.h"
54
55 #include "radeon_context.h"
56 #include "radeon_ioctl.h"
57 #include "radeon_state.h"
58 #include "radeon_span.h"
59 #include "radeon_tex.h"
60 #include "radeon_swtcl.h"
61 #include "radeon_tcl.h"
62 #include "radeon_vtxfmt.h"
63 #include "radeon_maos.h"
64
65 #define DRIVER_DATE "20030328"
66
67 #include "vblank.h"
68 #include "utils.h"
69 #include "xmlpool.h" /* for symbolic values of enum-type options */
70 #ifndef RADEON_DEBUG
71 int RADEON_DEBUG = (0);
72 #endif
73
74
75 /* Return the width and height of the given buffer.
76 */
77 static void radeonGetBufferSize( GLframebuffer *buffer,
78 GLuint *width, GLuint *height )
79 {
80 GET_CURRENT_CONTEXT(ctx);
81 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
82
83 LOCK_HARDWARE( rmesa );
84 *width = rmesa->dri.drawable->w;
85 *height = rmesa->dri.drawable->h;
86 UNLOCK_HARDWARE( rmesa );
87 }
88
89 /* Return various strings for glGetString().
90 */
91 static const GLubyte *radeonGetString( GLcontext *ctx, GLenum name )
92 {
93 radeonContextPtr rmesa = RADEON_CONTEXT(ctx);
94 static char buffer[128];
95 unsigned offset;
96 GLuint agp_mode = rmesa->radeonScreen->IsPCI ? 0 :
97 rmesa->radeonScreen->AGPMode;
98
99 switch ( name ) {
100 case GL_VENDOR:
101 return (GLubyte *)"Tungsten Graphics, Inc.";
102
103 case GL_RENDERER:
104 offset = driGetRendererString( buffer, "Radeon", DRIVER_DATE,
105 agp_mode );
106
107 sprintf( & buffer[ offset ], " %sTCL",
108 !(rmesa->TclFallback & RADEON_TCL_FALLBACK_TCL_DISABLE)
109 ? "" : "NO-" );
110
111 return (GLubyte *)buffer;
112
113 default:
114 return NULL;
115 }
116 }
117
118
119 /* Extension strings exported by the R100 driver.
120 */
121 static const char * const card_extensions[] =
122 {
123 "GL_ARB_multisample",
124 "GL_ARB_multitexture",
125 "GL_ARB_texture_border_clamp",
126 "GL_ARB_texture_compression",
127 "GL_ARB_texture_env_add",
128 "GL_ARB_texture_env_combine",
129 "GL_ARB_texture_env_dot3",
130 "GL_ARB_texture_mirrored_repeat",
131 "GL_EXT_blend_logic_op",
132 "GL_EXT_blend_subtract",
133 "GL_EXT_secondary_color",
134 "GL_EXT_texture_edge_clamp",
135 "GL_EXT_texture_env_combine",
136 "GL_EXT_texture_env_dot3",
137 "GL_EXT_texture_filter_anisotropic",
138 "GL_EXT_texture_lod_bias",
139 "GL_EXT_texture_mirror_clamp",
140 "GL_ATI_texture_env_combine3",
141 "GL_ATI_texture_mirror_once",
142 "GL_MESA_ycbcr_texture",
143 "GL_NV_blend_square",
144 "GL_SGIS_generate_mipmap",
145 NULL
146 };
147
148 extern const struct tnl_pipeline_stage _radeon_texrect_stage;
149 extern const struct tnl_pipeline_stage _radeon_render_stage;
150 extern const struct tnl_pipeline_stage _radeon_tcl_stage;
151
152 static const struct tnl_pipeline_stage *radeon_pipeline[] = {
153
154 /* Try and go straight to t&l
155 */
156 &_radeon_tcl_stage,
157
158 /* Catch any t&l fallbacks
159 */
160 &_tnl_vertex_transform_stage,
161 &_tnl_normal_transform_stage,
162 &_tnl_lighting_stage,
163 &_tnl_fog_coordinate_stage,
164 &_tnl_texgen_stage,
165 &_tnl_texture_transform_stage,
166
167 /* Scale texture rectangle to 0..1.
168 */
169 &_radeon_texrect_stage,
170
171 &_radeon_render_stage,
172 &_tnl_render_stage, /* FALLBACK: */
173 0,
174 };
175
176
177
178 /* Initialize the driver's misc functions.
179 */
180 static void radeonInitDriverFuncs( struct dd_function_table *functions )
181 {
182 functions->GetBufferSize = radeonGetBufferSize;
183 functions->ResizeBuffers = _swrast_alloc_buffers;
184 functions->GetString = radeonGetString;
185 }
186
187 static const struct dri_debug_control debug_control[] =
188 {
189 { "fall", DEBUG_FALLBACKS },
190 { "tex", DEBUG_TEXTURE },
191 { "ioctl", DEBUG_IOCTL },
192 { "prim", DEBUG_PRIMS },
193 { "vert", DEBUG_VERTS },
194 { "state", DEBUG_STATE },
195 { "code", DEBUG_CODEGEN },
196 { "vfmt", DEBUG_VFMT },
197 { "vtxf", DEBUG_VFMT },
198 { "verb", DEBUG_VERBOSE },
199 { "dri", DEBUG_DRI },
200 { "dma", DEBUG_DMA },
201 { "san", DEBUG_SANITY },
202 { NULL, 0 }
203 };
204
205
206 static int
207 get_ust_nop( int64_t * ust )
208 {
209 *ust = 1;
210 return 0;
211 }
212
213
214 /* Create the device specific context.
215 */
216 GLboolean
217 radeonCreateContext( const __GLcontextModes *glVisual,
218 __DRIcontextPrivate *driContextPriv,
219 void *sharedContextPrivate)
220 {
221 __DRIscreenPrivate *sPriv = driContextPriv->driScreenPriv;
222 radeonScreenPtr screen = (radeonScreenPtr)(sPriv->private);
223 struct dd_function_table functions;
224 radeonContextPtr rmesa;
225 GLcontext *ctx, *shareCtx;
226 int i;
227 int tcl_mode, fthrottle_mode;
228
229 assert(glVisual);
230 assert(driContextPriv);
231 assert(screen);
232
233 /* Allocate the Radeon context */
234 rmesa = (radeonContextPtr) CALLOC( sizeof(*rmesa) );
235 if ( !rmesa )
236 return GL_FALSE;
237
238 /* Parse configuration files.
239 * Do this here so that initialMaxAnisotropy is set before we create
240 * the default textures.
241 */
242 driParseConfigFiles (&rmesa->optionCache, &screen->optionCache,
243 screen->driScreen->myNum, "r200");
244 rmesa->initialMaxAnisotropy = driQueryOptionf(&rmesa->optionCache,
245 "def_max_anisotropy");
246
247 /* Init default driver functions then plug in our Radeon-specific functions
248 * (the texture functions are especially important)
249 */
250 _mesa_init_driver_functions( &functions );
251 radeonInitDriverFuncs( &functions );
252 radeonInitTextureFuncs( &functions );
253
254 /* Allocate the Mesa context */
255 if (sharedContextPrivate)
256 shareCtx = ((radeonContextPtr) sharedContextPrivate)->glCtx;
257 else
258 shareCtx = NULL;
259 rmesa->glCtx = _mesa_create_context(glVisual, shareCtx,
260 &functions, (void *) rmesa);
261 if (!rmesa->glCtx) {
262 FREE(rmesa);
263 return GL_FALSE;
264 }
265 driContextPriv->driverPrivate = rmesa;
266
267 /* Init radeon context data */
268 rmesa->dri.context = driContextPriv;
269 rmesa->dri.screen = sPriv;
270 rmesa->dri.drawable = NULL; /* Set by XMesaMakeCurrent */
271 rmesa->dri.hwContext = driContextPriv->hHWContext;
272 rmesa->dri.hwLock = &sPriv->pSAREA->lock;
273 rmesa->dri.fd = sPriv->fd;
274 rmesa->dri.drmMinor = sPriv->drmMinor;
275
276 rmesa->radeonScreen = screen;
277 rmesa->sarea = (RADEONSAREAPrivPtr)((GLubyte *)sPriv->pSAREA +
278 screen->sarea_priv_offset);
279
280
281 rmesa->dma.buf0_address = rmesa->radeonScreen->buffers->list[0].address;
282
283 (void) memset( rmesa->texture_heaps, 0, sizeof( rmesa->texture_heaps ) );
284 make_empty_list( & rmesa->swapped );
285
286 rmesa->nr_heaps = screen->numTexHeaps;
287 for ( i = 0 ; i < rmesa->nr_heaps ; i++ ) {
288 rmesa->texture_heaps[i] = driCreateTextureHeap( i, rmesa,
289 screen->texSize[i],
290 12,
291 RADEON_NR_TEX_REGIONS,
292 rmesa->sarea->texList[i],
293 & rmesa->sarea->texAge[i],
294 & rmesa->swapped,
295 sizeof( radeonTexObj ),
296 (destroy_texture_object_t *) radeonDestroyTexObj );
297
298 driSetTextureSwapCounterLocation( rmesa->texture_heaps[i],
299 & rmesa->c_textureSwaps );
300 }
301 rmesa->texture_depth = driQueryOptioni (&rmesa->optionCache,
302 "texture_depth");
303 if (rmesa->texture_depth == DRI_CONF_TEXTURE_DEPTH_FB)
304 rmesa->texture_depth = ( screen->cpp == 4 ) ?
305 DRI_CONF_TEXTURE_DEPTH_32 : DRI_CONF_TEXTURE_DEPTH_16;
306
307 rmesa->swtcl.RenderIndex = ~0;
308 rmesa->lost_context = 1;
309
310 /* Set the maximum texture size small enough that we can guarentee that
311 * all texture units can bind a maximal texture and have them both in
312 * texturable memory at once.
313 */
314
315 ctx = rmesa->glCtx;
316 ctx->Const.MaxTextureUnits = 2;
317 ctx->Const.MaxTextureImageUnits = 2;
318 ctx->Const.MaxTextureCoordUnits = 2;
319
320 driCalculateMaxTextureLevels( rmesa->texture_heaps,
321 rmesa->nr_heaps,
322 & ctx->Const,
323 4,
324 11, /* max 2D texture size is 2048x2048 */
325 0, /* 3D textures unsupported. */
326 0, /* cube textures unsupported. */
327 11, /* max rect texture size is 2048x2048. */
328 12,
329 GL_FALSE );
330
331 ctx->Const.MaxTextureMaxAnisotropy = 16.0;
332
333 /* No wide points.
334 */
335 ctx->Const.MinPointSize = 1.0;
336 ctx->Const.MinPointSizeAA = 1.0;
337 ctx->Const.MaxPointSize = 1.0;
338 ctx->Const.MaxPointSizeAA = 1.0;
339
340 ctx->Const.MinLineWidth = 1.0;
341 ctx->Const.MinLineWidthAA = 1.0;
342 ctx->Const.MaxLineWidth = 10.0;
343 ctx->Const.MaxLineWidthAA = 10.0;
344 ctx->Const.LineWidthGranularity = 0.0625;
345
346 /* Set maxlocksize (and hence vb size) small enough to avoid
347 * fallbacks in radeon_tcl.c. ie. guarentee that all vertices can
348 * fit in a single dma buffer for indexed rendering of quad strips,
349 * etc.
350 */
351 ctx->Const.MaxArrayLockSize =
352 MIN2( ctx->Const.MaxArrayLockSize,
353 RADEON_BUFFER_SIZE / RADEON_MAX_TCL_VERTSIZE );
354
355 rmesa->boxes = 0;
356
357 /* formerly in radeon_tex.c */
358 driInitTextureObjects( ctx, & rmesa->swapped,
359 DRI_TEXMGR_DO_TEXTURE_1D
360 | DRI_TEXMGR_DO_TEXTURE_2D );
361
362 /* Initialize the software rasterizer and helper modules.
363 */
364 _swrast_CreateContext( ctx );
365 _ac_CreateContext( ctx );
366 _tnl_CreateContext( ctx );
367 _swsetup_CreateContext( ctx );
368 _ae_create_context( ctx );
369
370 /* Install the customized pipeline:
371 */
372 _tnl_destroy_pipeline( ctx );
373 _tnl_install_pipeline( ctx, radeon_pipeline );
374 ctx->Driver.FlushVertices = radeonFlushVertices;
375
376 /* Try and keep materials and vertices separate:
377 */
378 _tnl_isolate_materials( ctx, GL_TRUE );
379
380
381 /* _mesa_allow_light_in_model( ctx, GL_FALSE ); */
382
383 /* Try and keep materials and vertices separate:
384 */
385 _tnl_isolate_materials( ctx, GL_TRUE );
386
387
388 /* Configure swrast to match hardware characteristics:
389 */
390 _swrast_allow_pixel_fog( ctx, GL_FALSE );
391 _swrast_allow_vertex_fog( ctx, GL_TRUE );
392
393
394 _math_matrix_ctr( &rmesa->TexGenMatrix[0] );
395 _math_matrix_ctr( &rmesa->TexGenMatrix[1] );
396 _math_matrix_ctr( &rmesa->tmpmat );
397 _math_matrix_set_identity( &rmesa->TexGenMatrix[0] );
398 _math_matrix_set_identity( &rmesa->TexGenMatrix[1] );
399 _math_matrix_set_identity( &rmesa->tmpmat );
400
401 driInitExtensions( ctx, card_extensions, GL_TRUE );
402
403 if (rmesa->dri.drmMinor >= 9)
404 _mesa_enable_extension( ctx, "GL_NV_texture_rectangle");
405
406 /* XXX these should really go right after _mesa_init_driver_functions() */
407 radeonInitIoctlFuncs( ctx );
408 radeonInitStateFuncs( ctx );
409 radeonInitSpanFuncs( ctx );
410 radeonInitState( rmesa );
411 radeonInitSwtcl( ctx );
412
413 _mesa_vector4f_alloc( &rmesa->tcl.ObjClean, 0,
414 ctx->Const.MaxArrayLockSize, 32 );
415
416 fthrottle_mode = driQueryOptioni(&rmesa->optionCache, "fthrottle_mode");
417 rmesa->iw.irq_seq = -1;
418 rmesa->irqsEmitted = 0;
419 rmesa->do_irqs = (rmesa->radeonScreen->irq != 0 &&
420 fthrottle_mode == DRI_CONF_FTHROTTLE_IRQS);
421
422 rmesa->do_usleeps = (fthrottle_mode == DRI_CONF_FTHROTTLE_USLEEPS);
423
424 rmesa->vblank_flags = (rmesa->radeonScreen->irq != 0)
425 ? driGetDefaultVBlankFlags(&rmesa->optionCache) : VBLANK_FLAG_NO_IRQ;
426 #ifndef _SOLO
427 rmesa->get_ust = (PFNGLXGETUSTPROC) glXGetProcAddress( (const GLubyte *) "__glXGetUST" );
428 if ( rmesa->get_ust == NULL ) {
429 rmesa->get_ust = get_ust_nop;
430 }
431 #else
432 rmesa->get_ust = get_ust_nop;
433 #endif
434
435 (*rmesa->get_ust)( & rmesa->swap_ust );
436
437
438 #if DO_DEBUG
439 RADEON_DEBUG = driParseDebugString( getenv( "RADEON_DEBUG" ),
440 debug_control );
441 #endif
442
443 tcl_mode = driQueryOptioni(&rmesa->optionCache, "tcl_mode");
444 if (driQueryOptionb(&rmesa->optionCache, "no_rast")) {
445 fprintf(stderr, "disabling 3D acceleration\n");
446 FALLBACK(rmesa, RADEON_FALLBACK_DISABLE, 1);
447 } else if (tcl_mode == DRI_CONF_TCL_SW ||
448 !(rmesa->radeonScreen->chipset & RADEON_CHIPSET_TCL)) {
449 rmesa->radeonScreen->chipset &= ~RADEON_CHIPSET_TCL;
450 fprintf(stderr, "disabling TCL support\n");
451 TCL_FALLBACK(rmesa->glCtx, RADEON_TCL_FALLBACK_TCL_DISABLE, 1);
452 }
453
454 if (rmesa->radeonScreen->chipset & RADEON_CHIPSET_TCL) {
455 if (tcl_mode >= DRI_CONF_TCL_VTXFMT)
456 radeonVtxfmtInit( ctx, tcl_mode >= DRI_CONF_TCL_CODEGEN );
457
458 _tnl_need_dlist_norm_lengths( ctx, GL_FALSE );
459 }
460 return GL_TRUE;
461 }
462
463
464 /* Destroy the device specific context.
465 */
466 /* Destroy the Mesa and driver specific context data.
467 */
468 void radeonDestroyContext( __DRIcontextPrivate *driContextPriv )
469 {
470 GET_CURRENT_CONTEXT(ctx);
471 radeonContextPtr rmesa = (radeonContextPtr) driContextPriv->driverPrivate;
472 radeonContextPtr current = ctx ? RADEON_CONTEXT(ctx) : NULL;
473
474 /* check if we're deleting the currently bound context */
475 if (rmesa == current) {
476 RADEON_FIREVERTICES( rmesa );
477 _mesa_make_current2(NULL, NULL, NULL);
478 }
479
480 /* Free radeon context resources */
481 assert(rmesa); /* should never be null */
482 if ( rmesa ) {
483 GLboolean release_texture_heaps;
484
485
486 release_texture_heaps = (rmesa->glCtx->Shared->RefCount == 1);
487 _swsetup_DestroyContext( rmesa->glCtx );
488 _tnl_DestroyContext( rmesa->glCtx );
489 _ac_DestroyContext( rmesa->glCtx );
490 _swrast_DestroyContext( rmesa->glCtx );
491
492 radeonDestroySwtcl( rmesa->glCtx );
493 radeonReleaseArrays( rmesa->glCtx, ~0 );
494 if (rmesa->dma.current.buf) {
495 radeonReleaseDmaRegion( rmesa, &rmesa->dma.current, __FUNCTION__ );
496 radeonFlushCmdBuf( rmesa, __FUNCTION__ );
497 }
498
499 if (!(rmesa->TclFallback & RADEON_TCL_FALLBACK_TCL_DISABLE)) {
500 int tcl_mode = driQueryOptioni(&rmesa->optionCache, "tcl_mode");
501 if (tcl_mode >= DRI_CONF_TCL_VTXFMT)
502 radeonVtxfmtDestroy( rmesa->glCtx );
503 }
504
505 /* free the Mesa context */
506 rmesa->glCtx->DriverCtx = NULL;
507 _mesa_destroy_context( rmesa->glCtx );
508
509 _mesa_vector4f_free( &rmesa->tcl.ObjClean );
510
511 if (rmesa->state.scissor.pClipRects) {
512 FREE(rmesa->state.scissor.pClipRects);
513 rmesa->state.scissor.pClipRects = 0;
514 }
515
516 if ( release_texture_heaps ) {
517 /* This share group is about to go away, free our private
518 * texture object data.
519 */
520 int i;
521
522 for ( i = 0 ; i < rmesa->nr_heaps ; i++ ) {
523 driDestroyTextureHeap( rmesa->texture_heaps[ i ] );
524 rmesa->texture_heaps[ i ] = NULL;
525 }
526
527 assert( is_empty_list( & rmesa->swapped ) );
528 }
529
530 /* free the option cache */
531 driDestroyOptionCache (&rmesa->optionCache);
532
533 FREE( rmesa );
534 }
535 }
536
537
538
539
540 void
541 radeonSwapBuffers( __DRIdrawablePrivate *dPriv )
542 {
543
544 if (dPriv->driContextPriv && dPriv->driContextPriv->driverPrivate) {
545 radeonContextPtr rmesa;
546 GLcontext *ctx;
547 rmesa = (radeonContextPtr) dPriv->driContextPriv->driverPrivate;
548 ctx = rmesa->glCtx;
549 if (ctx->Visual.doubleBufferMode) {
550 _mesa_notifySwapBuffers( ctx ); /* flush pending rendering comands */
551
552 if ( rmesa->doPageFlip ) {
553 radeonPageFlip( dPriv );
554 }
555 else {
556 radeonCopyBuffer( dPriv );
557 }
558 }
559 }
560 else {
561 /* XXX this shouldn't be an error but we can't handle it for now */
562 _mesa_problem(NULL, "%s: drawable has no context!", __FUNCTION__);
563 }
564 }
565
566
567 /* Force the context `c' to be the current context and associate with it
568 * buffer `b'.
569 */
570 GLboolean
571 radeonMakeCurrent( __DRIcontextPrivate *driContextPriv,
572 __DRIdrawablePrivate *driDrawPriv,
573 __DRIdrawablePrivate *driReadPriv )
574 {
575 if ( driContextPriv ) {
576 radeonContextPtr newCtx =
577 (radeonContextPtr) driContextPriv->driverPrivate;
578
579 if (RADEON_DEBUG & DEBUG_DRI)
580 fprintf(stderr, "%s ctx %p\n", __FUNCTION__, (void *) newCtx->glCtx);
581
582 if ( newCtx->dri.drawable != driDrawPriv ) {
583 driDrawableInitVBlank( driDrawPriv, newCtx->vblank_flags );
584 newCtx->dri.drawable = driDrawPriv;
585 radeonUpdateWindow( newCtx->glCtx );
586 radeonUpdateViewportOffset( newCtx->glCtx );
587 }
588
589 _mesa_make_current2( newCtx->glCtx,
590 (GLframebuffer *) driDrawPriv->driverPrivate,
591 (GLframebuffer *) driReadPriv->driverPrivate );
592
593 if ( !newCtx->glCtx->Viewport.Width ) {
594 _mesa_set_viewport( newCtx->glCtx, 0, 0,
595 driDrawPriv->w, driDrawPriv->h );
596 }
597
598 if (newCtx->vb.enabled)
599 radeonVtxfmtMakeCurrent( newCtx->glCtx );
600
601 } else {
602 if (RADEON_DEBUG & DEBUG_DRI)
603 fprintf(stderr, "%s ctx is null\n", __FUNCTION__);
604 _mesa_make_current( 0, 0 );
605 }
606
607 if (RADEON_DEBUG & DEBUG_DRI)
608 fprintf(stderr, "End %s\n", __FUNCTION__);
609 return GL_TRUE;
610 }
611
612 /* Force the context `c' to be unbound from its buffer.
613 */
614 GLboolean
615 radeonUnbindContext( __DRIcontextPrivate *driContextPriv )
616 {
617 radeonContextPtr rmesa = (radeonContextPtr) driContextPriv->driverPrivate;
618
619 if (RADEON_DEBUG & DEBUG_DRI)
620 fprintf(stderr, "%s ctx %p\n", __FUNCTION__, (void *) rmesa->glCtx);
621
622 return GL_TRUE;
623 }