summaryrefslogtreecommitdiff
path: root/glucose/glucose.c
blob: 9e9933374ef60e33700040167698f431575b2933 (plain)
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
/*
 * Copyright 2006 Zack Rusin
 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * and its documentation for any purpose is hereby granted without
 * fee, provided that the above copyright notice appear in all copies
 * and that both that copyright notice and this permission notice
 * appear in supporting documentation, and that the name of
 * David Reveman not be used in advertising or publicity pertaining to
 * distribution of the software without specific, written prior permission.
 * David Reveman makes no representations about the suitability of this
 * software for any purpose. It is provided "as is" without express or
 * implied warranty.
 *
 * ZACK RUSIN DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 * EVENT SHALL ZACK RUSIN BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 *
 * Authors: Alan Hourihane <alanh@tungstengraphics.com>
 *
 * Re-written from original code by Zack Rusin
 *
 **************************************************************************/

#ifdef HAVE_DIX_CONFIG_H
#include <dix-config.h>
#endif

#include "glxserver.h"
#include "glucose.h"
#include "glitz_glucose.h"

#include "xgl.h"

#include "xf86str.h"
#include "xf86.h"

#ifdef MITSHM
#include "shmint.h"
static ShmFuncs shmFuncs = { NULL, xglShmPutImage };
#endif

int xglScreenGeneration;
int xglScreenPrivateIndex;
int xglGCPrivateIndex;
int xglPixmapPrivateIndex;
int xglWinPrivateIndex;
#ifdef RENDER
int xglGlyphPrivateIndex;
#endif

static int glucoseGeneration = -1;
int glucoseScreenPrivateIndex;
int glucoseCreateWindowIndex;

xglScreenInfoRec xglScreenInfo = {
    NULL, 0, 0, 0, 0, 0,
    DEFAULT_GEOMETRY_DATA_TYPE,
    DEFAULT_GEOMETRY_USAGE,
    FALSE,
    XGL_DEFAULT_PBO_MASK,
    FALSE,
    FALSE,
    FilterBilinear,
    {
	{ FALSE, FALSE, { 0, 0, 0, 0 } },
	{ FALSE, FALSE, { 0, 0, 0, 0 } },
	{ FALSE, FALSE, { 0, 0, 0, 0 } },
	{ FALSE, FALSE, { 0, 0, 0, 0 } }
    }
};

static glitz_drawable_format_t *
glucoseInitOutput(__GLXscreen *screen);

/* Wrapped for glxext close down */
static void glucoseDestroyGLXscreen(__GLXscreen *screen)
{
	ErrorF("SHUTDOWN EXTENSION\n");
}

static Bool
glucoseCreateWindow(WindowPtr pWin)
{
  int ret = TRUE;
  ScreenPtr pScreen = pWin->drawable.pScreen;
  CreateWindowProcPtr CreateWindow =
    (CreateWindowProcPtr)(pScreen->devPrivates[glucoseCreateWindowIndex].ptr);
  GlucoseScreenPrivPtr pScreenPriv = GlucoseGetScreenPriv(pScreen);
  int err;

  xf86DrvMsg(pScreen->myNum, X_INFO,
		  "Glucose initializing screen %d\n",pScreen->myNum);

  if ( pScreen->CreateWindow != glucoseCreateWindow ) {
    /* Can't find hook we are hung on */
	xf86DrvMsg(pScreen->myNum, X_WARNING /* X_ERROR */,
		  "glucoseCreateWindow %p called when not in pScreen->CreateWindow %p n",
		   (void *)glucoseCreateWindow,
		   (void *)pScreen->CreateWindow );
  }

  /* Unhook this function ... */
  pScreen->CreateWindow = CreateWindow;
  pScreen->devPrivates[glucoseCreateWindowIndex].ptr = NULL;

  /* ... and call the previous CreateWindow fuction, if any */
  if (NULL!=pScreen->CreateWindow) {
    ret = (*pScreen->CreateWindow)(pWin);
  }

  xglScreenInfo.width  = pScreen->width;
  xglScreenInfo.height = pScreen->height;
  xglScreenInfo.widthMm  = pScreen->mmWidth;
  xglScreenInfo.heightMm = pScreen->mmHeight;

  pScreenPriv->screen = glxGetScreen(pScreen);

  /* This stops the driver being unload and prevents a crash.
   * But should be solved properly.
   */
  pScreenPriv->destroyGLXscreen = pScreenPriv->screen->destroy;
  pScreenPriv->screen->destroy = glucoseDestroyGLXscreen;

  {
    glitz_drawable_t	    *drawable;
    glitz_drawable_format_t *format;
    __GLcontextModes *modes = pScreenPriv->screen->modes;
    PixmapPtr pPixmap = pScreen->GetScreenPixmap(pScreen);
    xglScreenPtr xglScreenPriv = XGL_GET_SCREEN_PRIV (pScreen);

    __pGlxClient = serverClient;
    
    /* track root pixmap */
    if (pPixmap)
    {
	pPixmap->drawable.serialNumber = NEXT_SERIAL_NUMBER;
	pPixmap->drawable.id = FakeClientID(0);
	AddResource(pPixmap->drawable.id, RT_PIXMAP, (pointer)pPixmap);
    }

    pScreenPriv->rootDrawable = pScreenPriv->screen->createDrawable(pScreenPriv->screen, (DrawablePtr)pPixmap, GLX_DRAWABLE_PIXMAP, pPixmap->drawable.id, modes);

    if (!pScreenPriv->rootDrawable) {
  	xf86DrvMsg(pScreen->myNum, X_WARNING,
		  "Glucose - creating root drawable failed\n");
    	return FALSE;
    }

    pScreenPriv->rootContext = pScreenPriv->screen->createContext(pScreenPriv->screen, modes, NULL);

    if (!pScreenPriv->rootContext) {
  	xf86DrvMsg(pScreen->myNum, X_WARNING,
		  "Glucose - creating root context failed\n");
	pScreenPriv->rootDrawable->destroy(pScreenPriv->rootDrawable);
	pScreenPriv->rootDrawable = NULL;
    	return FALSE;
    }

    pScreenPriv->rootContext->drawPriv =
    	pScreenPriv->rootContext->readPriv = pScreenPriv->rootDrawable;

    __glXleaveServer(FALSE);
    err = pScreenPriv->rootContext->makeCurrent(pScreenPriv->rootContext);
    if (!err) {
    	__glXenterServer(FALSE);
  	xf86DrvMsg(pScreen->myNum, X_WARNING, 
		  "Glucose makeCurrent failed, err is %d\n",err);
	pScreenPriv->rootContext->destroy(pScreenPriv->rootContext);
	pScreenPriv->rootContext = NULL;
	pScreenPriv->rootDrawable->destroy(pScreenPriv->rootDrawable);
	pScreenPriv->rootDrawable = NULL;
	return FALSE;
    }

    format = glucoseInitOutput(pScreenPriv->screen);

    drawable = glitz_glucose_create_drawable_for_window(pScreenPriv->screen,
                                                    format, pScreenPriv->rootDrawable,
                                                    pScreen->width,
                                                    pScreen->height);

    if (!drawable) {
    	__glXenterServer(FALSE);
        xf86DrvMsg(pScreen->myNum, X_ERROR,
		  "Glucose could not create glitz drawable, not initializing.\n");

	pScreenPriv->rootContext->destroy(pScreenPriv->rootContext);
	pScreenPriv->rootContext = NULL;
	pScreenPriv->rootDrawable->destroy(pScreenPriv->rootDrawable);
	pScreenPriv->rootDrawable = NULL;
	return FALSE;
    }

    xglScreenInfo.drawable = xglScreenPriv->drawable = drawable;
    xglScreenPriv->features =
	glitz_drawable_get_features (xglScreenInfo.drawable);

    xf86DrvMsg(pScreen->myNum, X_INFO,
		  "Glucose reports GLitz features as 0x%lx\n",xglScreenPriv->features);

    if (!glucoseFinishScreenInit(pScreen)) {
    	__glXenterServer(FALSE);
        xf86DrvMsg(pScreen->myNum, X_ERROR,
		  "Glucose could not initialize.\n");
	pScreenPriv->rootContext->destroy(pScreenPriv->rootContext);
	pScreenPriv->rootContext = NULL;
	pScreenPriv->rootDrawable->destroy(pScreenPriv->rootDrawable);
	pScreenPriv->rootDrawable = NULL;
	return FALSE;
    }

    __glXenterServer(FALSE);

    /* now fixup root pixmap */
    pPixmap = pScreen->GetScreenPixmap(pScreen);
    xglPixmapPtr pPixmapPriv = XGL_GET_PIXMAP_PRIV (pPixmap);

    xglPixmapSurfaceInit(pPixmap, xglScreenPriv->features, 0, 0);

    REGION_UNINIT (pPixmap->drawable.pScreen, &pPixmapPriv->bitRegion);

    xglPixmapSurfaceInit(pPixmap, xglScreenPriv->features, pScreen->width, pScreen->height);

    if (pScreen->devPrivate && pPixmapPriv->pDamage) {
	RegionPtr pRegion = DamageRegion (pPixmapPriv->pDamage);

	REGION_UNINIT (pPixmap->drawable.pScreen, pRegion);
	REGION_INIT (pPixmap->drawable.pScreen, pRegion, NullBox, 0);
	REGION_SUBTRACT (pPixmap->drawable.pScreen, pRegion,
			     &pPixmapPriv->bitRegion, pRegion);

    }

    pPixmapPriv->pVisual = xglScreenPriv->rootVisual;

    pPixmapPriv->target  = xglPixmapTargetIn;

    xglScreenPriv->pScreenPixmap = pPixmap;

    glitz_drawable_reference (xglScreenPriv->drawable);
    pPixmapPriv->drawable = xglScreenPriv->drawable;

    glitz_surface_reference (xglScreenPriv->surface);
    pPixmapPriv->surface = xglScreenPriv->surface;
  }

  return (ret);
}

static Bool
glucoseAllocatePrivates(ScreenPtr pScreen)
{
    GlucoseScreenPrivPtr pScreenPriv;

    if (glucoseGeneration != serverGeneration) {
	glucoseScreenPrivateIndex = AllocateScreenPrivateIndex();
	if (glucoseScreenPrivateIndex < 0)
	    return FALSE;
	glucoseCreateWindowIndex = AllocateScreenPrivateIndex();
	if (glucoseCreateWindowIndex < 0)
	    return FALSE;

	glucoseGeneration = serverGeneration;
    }

    pScreenPriv = xalloc(sizeof(GlucoseScreenPrivRec));
    if (!pScreenPriv) {
        LogMessage(X_WARNING, "Glucose(%d): Failed to allocate screen private\n",
		   pScreen->myNum);
	return FALSE;
    }

    pScreen->devPrivates[glucoseScreenPrivateIndex].ptr = (pointer) pScreenPriv;

    pScreen->devPrivates[glucoseCreateWindowIndex].ptr
	= (void*)(pScreen->CreateWindow);
    pScreen->CreateWindow = glucoseCreateWindow;

    return TRUE;
}

static glitz_drawable_format_t *
glucoseInitOutput(__GLXscreen *screen)
{
    glitz_drawable_format_t *format, templ;
    int			    i;
    unsigned long	    mask;
    unsigned long	    extraMask[] = {
	GLITZ_FORMAT_DOUBLEBUFFER_MASK | GLITZ_FORMAT_ALPHA_SIZE_MASK,
	GLITZ_FORMAT_DOUBLEBUFFER_MASK,
	GLITZ_FORMAT_ALPHA_SIZE_MASK,
	0
    };

    templ.samples          = 1;
    templ.doublebuffer     = 1;
    templ.color.fourcc     = GLITZ_FOURCC_RGB;
    templ.color.alpha_size = 8;

    mask = GLITZ_FORMAT_SAMPLES_MASK | GLITZ_FORMAT_FOURCC_MASK;

    for (i = 0; i < sizeof(extraMask) / sizeof(extraMask[0]); i++)
    {
	format = glitz_glucose_find_window_format(screen,
                                              mask | extraMask[i],
                                              &templ, 0);
	if (format)
	    break;
    }

    if (!format)
	FatalError("no visual format found");

    xglScreenInfo.depth =
	format->color.red_size   +
	format->color.green_size +
	format->color.blue_size;

    return format;
}

/* Here to mimick the xgl counterpart */
static Bool
xglAllocatePrivates (ScreenPtr pScreen)
{
    xglScreenPtr pScreenPriv;

    if (xglScreenGeneration != serverGeneration)
    {
	xglScreenPrivateIndex = AllocateScreenPrivateIndex ();
	if (xglScreenPrivateIndex < 0)
	    return FALSE;

	xglGCPrivateIndex = AllocateGCPrivateIndex ();
	if (xglGCPrivateIndex < 0)
	    return FALSE;

	xglPixmapPrivateIndex = AllocatePixmapPrivateIndex ();
	if (xglPixmapPrivateIndex < 0)
	    return FALSE;

	xglWinPrivateIndex = AllocateWindowPrivateIndex ();
	if (xglWinPrivateIndex < 0)
	    return FALSE;

#ifdef RENDER
	xglGlyphPrivateIndex = AllocateGlyphPrivateIndex ();
	if (xglGlyphPrivateIndex < 0)
	    return FALSE;
#endif

	xglScreenGeneration = serverGeneration;
    }

    if (!AllocateGCPrivate (pScreen, xglGCPrivateIndex, sizeof (xglGCRec)))
	return FALSE;

    if (!AllocatePixmapPrivate (pScreen, xglPixmapPrivateIndex,
				sizeof (xglPixmapRec)))
	return FALSE;

    if (!AllocateWindowPrivate (pScreen, xglWinPrivateIndex,
				sizeof (xglWinRec)))
	return FALSE;

    pScreenPriv = xalloc (sizeof (xglScreenRec));
    if (!pScreenPriv)
	return FALSE;
    memset(pScreenPriv, 0, sizeof(xglScreenRec));

    XGL_SET_SCREEN_PRIV (pScreen, pScreenPriv);

    return TRUE;
}

static Bool
glucoseDestroyPixmap (PixmapPtr pPixmap)
{
    ScreenPtr pScreen = pPixmap->drawable.pScreen;
    PixmapPtr pScreenPixmap = pScreen->GetScreenPixmap(pScreen);
    
    if (pPixmap == pScreenPixmap) {
    	ErrorF("SHUTTING DOWN\n");
    	/* we're shutting down, we'll clean this up later */
        return TRUE;
    }

    return xglDestroyPixmap(pPixmap);
}

Bool
glucoseScreenInit (ScreenPtr pScreen, int flags)
{
    xglScreenPtr pScreenPriv;

#ifdef RENDER
    PictureScreenPtr pPictureScreen;
#endif

    if (!glucoseAllocatePrivates(pScreen))
        return FALSE;

    if (!xglAllocatePrivates (pScreen))
	return FALSE;

    pScreenPriv = XGL_GET_SCREEN_PRIV (pScreen);

    pScreenPriv->pScreenPixmap = NULL;

    pScreenPriv->pVisual = 0;

    pScreenPriv->rootVisual = 0;

    GEOMETRY_INIT (pScreen, &pScreenPriv->scratchGeometry,
		   GLITZ_GEOMETRY_TYPE_VERTEX,
		   pScreenPriv->geometryUsage, 0);

    pScreenPriv->geometryDataType = xglScreenInfo.geometryDataType;
    pScreenPriv->geometryUsage    = xglScreenInfo.geometryUsage;
    pScreenPriv->yInverted	  = xglScreenInfo.yInverted;
    pScreenPriv->pboMask	  = xglScreenInfo.pboMask;
    pScreenPriv->lines		  = xglScreenInfo.lines;
    pScreenPriv->noYuv		  = xglScreenInfo.noYuv;
    pScreenPriv->xvFilter	  = xglScreenInfo.xvFilter;
    pScreenPriv->accel		  = xglScreenInfo.accel;

#if 0
    /* add some flags to change the default xgl methods above */
    if (flags & GLUCOSE_xxx) {

    }
#endif


    pScreen->CreatePixmap  = xglCreatePixmap;
    pScreen->DestroyPixmap = glucoseDestroyPixmap;

#ifdef MITSHM
    ShmRegisterFuncs (pScreen, &shmFuncs);
#endif

    XGL_SCREEN_WRAP (GetImage, xglGetImage);
    XGL_SCREEN_WRAP (GetSpans, xglGetSpans);

    XGL_SCREEN_WRAP (CopyWindow, xglCopyWindow);
    XGL_SCREEN_WRAP (CreateWindow, xglCreateWindow);
    XGL_SCREEN_WRAP (DestroyWindow, xglDestroyWindow);
    XGL_SCREEN_WRAP (ChangeWindowAttributes, xglChangeWindowAttributes);

    XGL_SCREEN_WRAP (CreateGC, xglCreateGC);

#if 0
#define xglQueryBestSize	  (void *) NoopDDA
#define xglSaveScreen		  (void *) NoopDDA

#define xglConstrainCursor	  (void *) NoopDDA
#define xglCursorLimits		  (void *) NoopDDA
#define xglDisplayCursor	  (void *) NoopDDA
#define xglRealizeCursor	  (void *) NoopDDA
#define xglUnrealizeCursor	  (void *) NoopDDA
#define xglRecolorCursor	  (void *) NoopDDA
#define xglSetCursorPosition	  (void *) NoopDDA

    /* Might be nice to provide a textured hw cursor at some point */
    pScreen->ConstrainCursor   = xglConstrainCursor;
    pScreen->CursorLimits      = xglCursorLimits;
    pScreen->DisplayCursor     = xglDisplayCursor;
    pScreen->RealizeCursor     = xglRealizeCursor;
    pScreen->UnrealizeCursor   = xglUnrealizeCursor;
    pScreen->RecolorCursor     = xglRecolorCursor;
    pScreen->SetCursorPosition = xglSetCursorPosition;
#endif

    pScreen->ModifyPixmapHeader = xglModifyPixmapHeader;

    XGL_SCREEN_WRAP (BitmapToRegion, xglPixmapToRegion);

    pScreen->GetWindowPixmap = xglGetWindowPixmap;

    XGL_SCREEN_WRAP (SetWindowPixmap, xglSetWindowPixmap);

#ifdef RENDER
    pPictureScreen = GetPictureScreenIfSet (pScreen);
    if (pPictureScreen)
    {
	if (!AllocateGlyphPrivate (pScreen, xglGlyphPrivateIndex,
				   sizeof (xglGlyphRec)))
	    return FALSE;

	XGL_PICTURE_SCREEN_WRAP (Composite, xglComposite);
	XGL_PICTURE_SCREEN_WRAP (RealizeGlyph, xglRealizeGlyph);
	XGL_PICTURE_SCREEN_WRAP (UnrealizeGlyph, xglUnrealizeGlyph);
	XGL_PICTURE_SCREEN_WRAP (Glyphs, xglGlyphs);
	XGL_PICTURE_SCREEN_WRAP (Trapezoids, xglTrapezoids);
	XGL_PICTURE_SCREEN_WRAP (AddTraps, xglAddTraps);
	XGL_PICTURE_SCREEN_WRAP (AddTriangles, xglAddTriangles);
	XGL_PICTURE_SCREEN_WRAP (ChangePicture, xglChangePicture);
	XGL_PICTURE_SCREEN_WRAP (ChangePictureTransform,
				 xglChangePictureTransform);
	XGL_PICTURE_SCREEN_WRAP (ChangePictureFilter, xglChangePictureFilter);
    }
#endif

#if 0
#ifdef COMPOSITE
#warning "composite building"
    if (!compScreenInit (pScreen))
	return FALSE;
#endif
#endif

    /* Damage is required */
    DamageSetup (pScreen);

    XGL_SCREEN_WRAP (CloseScreen, glucoseCloseScreen);

    return TRUE;
}

static Bool
glucoseInitVisual (ScreenPtr	 pScreen,
	       xglVisualPtr	 pVisual,
	       xglPixelFormatPtr pPixel,
	       VisualID		 vid)
{
    glitz_format_t *format;

    XGL_SCREEN_PRIV (pScreen);

    format = xglFindBestSurfaceFormat (pScreen, pPixel);
    if (format)
    {
	glitz_drawable_format_t templ;
	unsigned long	        mask;

	templ.color        = format->color;
	templ.depth_size   = 0;
	templ.stencil_size = 0;
	templ.doublebuffer = 0;
	templ.samples      = 1;

	mask =
	    GLITZ_FORMAT_FOURCC_MASK       |
	    GLITZ_FORMAT_RED_SIZE_MASK     |
	    GLITZ_FORMAT_GREEN_SIZE_MASK   |
	    GLITZ_FORMAT_BLUE_SIZE_MASK    |
	    GLITZ_FORMAT_ALPHA_SIZE_MASK   |
	    GLITZ_FORMAT_DEPTH_SIZE_MASK   |
	    GLITZ_FORMAT_STENCIL_SIZE_MASK |
	    GLITZ_FORMAT_DOUBLEBUFFER_MASK |
	    GLITZ_FORMAT_SAMPLES_MASK;

	pVisual->next	 = 0;
	pVisual->vid	 = vid;
	pVisual->pPixel	 = pPixel;
	pVisual->pbuffer = FALSE;

	pVisual->format.surface  = format;
	pVisual->format.drawable =
	    glitz_find_drawable_format (pScreenPriv->drawable,
					mask, &templ, 0);

	return TRUE;
    }

    return FALSE;
}

static void
glucoseInitVisuals (ScreenPtr pScreen)
{
    xglVisualPtr v, new, *prev;
    xglPixelFormatPtr pPixel = NULL;
    int		 i,j;

    XGL_SCREEN_PRIV (pScreen);

    for (j = 0; j < pScreen->numVisuals; j++)
    {
        pPixel = NULL;
    	for (i = 0; i < xglNumPixelFormats(); i++)
        {
	    if (pScreen->visuals[j].nplanes == xglPixelFormats[i].depth &&
	    	BitsPerPixel(pScreen->visuals[j].nplanes) == xglPixelFormats[i].masks.bpp)
	    	pPixel = &xglPixelFormats[i];
	}
	if (pPixel) {
	    new = xalloc (sizeof (xglVisualRec));
	    if (new)
	    {
		if (glucoseInitVisual (pScreen, new, pPixel,
				   pScreen->visuals[j].vid))
		{
		    new->next = 0;

		    prev = &pScreenPriv->pVisual;
		    while ((v = *prev)) {
			prev = &v->next;
		    }

		    *prev = new;
		}
		else
		{
		    xfree (new);
		}
	    }
	}
    }
}

Bool
glucoseFinishScreenInit (ScreenPtr pScreen)
{
    xglVisualPtr v;

#ifdef RENDER
    glitz_vertex_format_t *format;
    static glitz_color_t  clearBlack = { 0x0, 0x0, 0x0, 0x0 };
    static glitz_color_t  solidWhite = { 0xffff, 0xffff, 0xffff, 0xffff };
    int			  i;
#endif

    XGL_SCREEN_PRIV (pScreen);

    glucoseInitVisuals (pScreen);

    for (v = pScreenPriv->pVisual; v; v = v->next)
    {
	if (v->vid == pScreen->rootVisual)
	    pScreenPriv->rootVisual = v;
    }

    if (!pScreenPriv->rootVisual || !pScreenPriv->rootVisual->format.surface)
	return FALSE;

    pScreenPriv->surface =
	glitz_surface_create (pScreenPriv->drawable,
			      pScreenPriv->rootVisual->format.surface,
			      pScreen->width, pScreen->height,
			      0, NULL);
    if (!pScreenPriv->surface)
	return FALSE;

    glitz_surface_attach (pScreenPriv->surface,
			  pScreenPriv->drawable,
			  GLITZ_DRAWABLE_BUFFER_FRONT_COLOR);

#ifdef RENDER
    for (i = 0; i < 33; i++)
	pScreenPriv->glyphCache[i].pScreen = NULL;

    for (v = pScreenPriv->pVisual; v; v = v->next)
    {
	if (v->pPixel->depth == 8)
	    break;
    }

    pScreenPriv->pSolidAlpha    = 0;
    pScreenPriv->trapInfo.pMask = 0;

    /* An accelerated alpha only Xgl visual is required for trapezoid
       acceleration */
    if (v && v->format.surface)
    {
	glitz_surface_t *mask;

	mask = glitz_surface_create (pScreenPriv->drawable,
				     v->format.surface,
				     2, 1, 0, NULL);
	if (mask)
	{
	    glitz_set_rectangle (mask, &clearBlack, 0, 0, 1, 1);
	    glitz_set_rectangle (mask, &solidWhite, 1, 0, 1, 1);

	    glitz_surface_set_fill (mask, GLITZ_FILL_NEAREST);
	    glitz_surface_set_filter (mask, GLITZ_FILTER_BILINEAR, NULL, 0);

	    pScreenPriv->trapInfo.pMask = xglCreateDevicePicture (mask);
	    if (!pScreenPriv->trapInfo.pMask)
		return FALSE;
	}
    }

    format = &pScreenPriv->trapInfo.format.vertex;
    format->primitive  = GLITZ_PRIMITIVE_QUADS;
    format->attributes = GLITZ_VERTEX_ATTRIBUTE_MASK_COORD_MASK;

    format->mask.type	     = GLITZ_DATA_TYPE_FLOAT;
    format->mask.size	     = GLITZ_COORDINATE_SIZE_X;
    format->bytes_per_vertex = sizeof (glitz_float_t);

    if (pScreenPriv->geometryDataType)
    {
	format->type		  = GLITZ_DATA_TYPE_FLOAT;
	format->bytes_per_vertex += 2 * sizeof (glitz_float_t);
	format->mask.offset	  = 2 * sizeof (glitz_float_t);
    }
    else
    {
	format->type		  = GLITZ_DATA_TYPE_SHORT;
	format->bytes_per_vertex += 2 * sizeof (glitz_short_t);
	format->mask.offset	  = 2 * sizeof (glitz_short_t);
    }
#endif

#if 0 /* Let the driver do this ! */
    if (!xglXvScreenInit (pScreen))
       return FALSE;
#endif

    return TRUE;
}

Bool
glucoseCloseScreen (int	  index,
		ScreenPtr pScreen)
{
    xglVisualPtr v;

    XGL_SCREEN_PRIV (pScreen);
    XGL_PIXMAP_PRIV (pScreenPriv->pScreenPixmap);
    XGL_SCREEN_UNWRAP (CloseScreen);
    GlucoseScreenPrivPtr pPriv = GlucoseGetScreenPriv(pScreen);

    __pGlxClient = serverClient;        

    xglFiniPixmap (pScreenPriv->pScreenPixmap);
#if 0
    if (pPixmapPriv->pDamage)
	DamageDestroy (pPixmapPriv->pDamage);
#endif

#ifdef RENDER
    int i;

    for (i = 0; i < 33; i++)
	xglFiniGlyphCache (&pScreenPriv->glyphCache[i]);

    if (pScreenPriv->pSolidAlpha)
	FreePicture ((pointer) pScreenPriv->pSolidAlpha, 0);

    if (pScreenPriv->trapInfo.pMask)
	FreePicture ((pointer) pScreenPriv->trapInfo.pMask, 0);
#endif

    if (pScreenPriv->surface)
	glitz_surface_destroy (pScreenPriv->surface);
    pPixmapPriv->surface = NULL;
    pScreenPriv->surface = NULL;

    GEOMETRY_UNINIT (&pScreenPriv->scratchGeometry);

    if (pScreenPriv->drawable)
	glitz_drawable_destroy(pScreenPriv->drawable);
    pPixmapPriv->drawable = NULL;
    pScreenPriv->drawable = NULL;
    xglScreenInfo.drawable = NULL;

    /* tear down glucose now */
#if 0
    /* Unfortunately, this causes some problems in hardware drivers */
    /* Debug, them and re-enable this */
    pPriv->rootContext->destroy(pPriv->rootContext);
#endif
    pPriv->rootDrawable->destroy(pPriv->rootDrawable);

    xfree(pPriv);
    pPriv = NULL;

    while (pScreenPriv->pVisual)
    {
	v = pScreenPriv->pVisual;
	pScreenPriv->pVisual = v->next;
	xfree (v);
    }
    xfree(pScreenPriv);
    pScreenPriv = NULL;

    return (*pScreen->CloseScreen) (index, pScreen);
}