http://www.tienza.es/crux/src/www.jwz.org/xscreensaver/xscreensaver-5.05.tar.gz
[xscreensaver] / hacks / glx / glblur.c
1 /* glblur --- radial blur using GL textures
2  * Copyright (c) 2002-2008 Jamie Zawinski <jwz@jwz.org>
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation.  No representations are made about the suitability of this
9  * software for any purpose.  It is provided "as is" without express or 
10  * implied warranty.
11  *
12  * This program draws a box and a few line segments, and generates a flowing
13  * radial blur outward from it -- this causes flowing field effects.
14  * It does this by rendering the scene into a small texture, then repeatedly
15  * rendering increasingly-enlarged and increasingly-transparent versions of
16  * that texture onto the frame buffer.
17  *
18  * As such, it's quite graphics intensive -- don't bother trying to run this
19  * if you don't have hardware-accelerated texture support.
20  *
21  * Inspired by Dario Corno's Radial Blur tutorial:
22  *    http://nehe.gamedev.net/tutorials/lesson.asp?l=36
23  */
24
25 #define DEFAULTS        "*delay:    10000 \n" \
26                         "*showFPS:  False \n" \
27                         "*fpsSolid: True  \n"
28
29 # define refresh_glblur 0
30 # define release_glblur 0
31 #undef countof
32 #define countof(x) (sizeof((x))/sizeof((*x)))
33
34 #undef ABS
35 #define ABS(n) ((n)<0?-(n):(n))
36 #undef SIGNOF
37 #define SIGNOF(n) ((n)<0?-1:1)
38
39 #include "xlockmore.h"
40 #include "colors.h"
41 #include "rotator.h"
42 #include "gltrackball.h"
43 #include <ctype.h>
44
45 #ifdef USE_GL /* whole file */
46
47 #define DEF_SPIN        "XYZ"
48 #define DEF_WANDER      "True"
49 #define DEF_BLURSIZE    "15"
50
51 typedef struct metaball metaball;
52
53
54 typedef struct {
55   GLXContext *glx_context;
56   rotator *rot;
57   trackball_state *trackball;
58   Bool button_down_p;
59
60   GLuint obj_dlist0;    /* east-west cube faces */
61   GLuint obj_dlist1;    /* north-south cube faces */
62   GLuint obj_dlist2;    /* up-down cube faces */
63   GLuint obj_dlist3;    /* spikes coming out of the cube's corners */
64   GLuint scene_dlist1;  /* the cube, rotated and translated */
65   GLuint scene_dlist2;  /* the spikes, rotated and translated */
66   int scene_polys1;     /* polygons in scene, not counting texture overlay */
67   int scene_polys2;     /* polygons in scene, not counting texture overlay */
68
69   GLuint texture;
70   unsigned int *tex_data;
71   int tex_w, tex_h;
72
73   int ncolors;
74   XColor *colors0;
75   XColor *colors1;
76   XColor *colors2;
77   XColor *colors3;
78   int ccolor;
79
80   Bool show_cube_p;
81   Bool show_spikes_p;
82
83 } glblur_configuration;
84
85 static glblur_configuration *bps = NULL;
86
87 static char *do_spin;
88 static Bool do_wander;
89 static int blursize;
90
91 static XrmOptionDescRec opts[] = {
92   { "-spin",   ".spin",   XrmoptionSepArg, 0 },
93   { "+spin",   ".spin",   XrmoptionNoArg, "" },
94   { "-blursize", ".blurSize", XrmoptionSepArg, 0 },
95   { "-wander", ".wander", XrmoptionNoArg, "True" },
96   { "+wander", ".wander", XrmoptionNoArg, "False" },
97 };
98
99 static argtype vars[] = {
100   {&do_spin,   "spin",   "Spin",   DEF_SPIN,   t_String},
101   {&do_wander, "wander", "Wander", DEF_WANDER, t_Bool},
102   {&blursize,  "blurSize","BlurSize", DEF_BLURSIZE,  t_Int},
103 };
104
105 ENTRYPOINT ModeSpecOpt glblur_opts = {countof(opts), opts, countof(vars), vars, NULL};
106
107
108 /* Window management, etc
109  */
110 ENTRYPOINT void
111 reshape_glblur (ModeInfo *mi, int width, int height)
112 {
113   GLfloat h = (GLfloat) height / (GLfloat) width;
114
115   glViewport (0, 0, (GLint) width, (GLint) height);
116
117   glMatrixMode(GL_PROJECTION);
118   glLoadIdentity();
119   gluPerspective (30.0, 1/h, 1.0, 100.0);
120
121   glMatrixMode(GL_MODELVIEW);
122   glLoadIdentity();
123   gluLookAt( 0.0, 0.0, 8.0,
124              0.0, 0.0, 0.0,
125              0.0, 1.0, 0.0);
126
127   glClear(GL_COLOR_BUFFER_BIT);
128 }
129
130
131 \f
132 /* Objects in the scene 
133  */
134
135 static void
136 generate_object (ModeInfo *mi)
137 {
138   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
139   Bool wire = MI_IS_WIREFRAME (mi);
140   int s = 10;
141
142   bp->scene_polys1 = 0;
143   bp->scene_polys2 = 0;
144
145   glNewList (bp->obj_dlist0, GL_COMPILE);
146   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* front */
147   glNormal3f (0, 0, 1);
148   glTexCoord2f(1, 0); glVertex3f ( 0.5, -0.5,  0.5);
149   glTexCoord2f(0, 0); glVertex3f ( 0.5,  0.5,  0.5);
150   glTexCoord2f(0, 1); glVertex3f (-0.5,  0.5,  0.5);
151   glTexCoord2f(1, 1); glVertex3f (-0.5, -0.5,  0.5);
152   bp->scene_polys1++;
153   glEnd();
154
155   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* back */
156   glNormal3f (0, 0, -1);
157   glTexCoord2f(0, 0); glVertex3f (-0.5, -0.5, -0.5);
158   glTexCoord2f(0, 1); glVertex3f (-0.5,  0.5, -0.5);
159   glTexCoord2f(1, 1); glVertex3f ( 0.5,  0.5, -0.5);
160   glTexCoord2f(1, 0); glVertex3f ( 0.5, -0.5, -0.5);
161   bp->scene_polys1++;
162   glEnd();
163   glEndList();
164
165   glNewList (bp->obj_dlist1, GL_COMPILE);
166   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* left */
167   glNormal3f (-1, 0, 0);
168   glTexCoord2f(1, 1); glVertex3f (-0.5,  0.5,  0.5);
169   glTexCoord2f(1, 0); glVertex3f (-0.5,  0.5, -0.5);
170   glTexCoord2f(0, 0); glVertex3f (-0.5, -0.5, -0.5);
171   glTexCoord2f(0, 1); glVertex3f (-0.5, -0.5,  0.5);
172   bp->scene_polys1++;
173   glEnd();
174
175   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* right */
176   glNormal3f (1, 0, 0);
177   glTexCoord2f(1, 1); glVertex3f ( 0.5, -0.5, -0.5);
178   glTexCoord2f(1, 0); glVertex3f ( 0.5,  0.5, -0.5);
179   glTexCoord2f(0, 0); glVertex3f ( 0.5,  0.5,  0.5);
180   glTexCoord2f(0, 1); glVertex3f ( 0.5, -0.5,  0.5);
181   bp->scene_polys1++;
182   glEnd();
183   glEndList();
184
185   glNewList (bp->obj_dlist2, GL_COMPILE);
186   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* top */
187   glNormal3f (0, 1, 0);
188   glTexCoord2f(0, 0); glVertex3f ( 0.5,  0.5,  0.5);
189   glTexCoord2f(0, 1); glVertex3f ( 0.5,  0.5, -0.5);
190   glTexCoord2f(1, 1); glVertex3f (-0.5,  0.5, -0.5);
191   glTexCoord2f(1, 0); glVertex3f (-0.5,  0.5,  0.5);
192   bp->scene_polys1++;
193   glEnd();
194
195   glBegin (wire ? GL_LINE_LOOP : GL_QUADS);     /* bottom */
196   glNormal3f (0, -1, 0);
197   glTexCoord2f(1, 0); glVertex3f (-0.5, -0.5,  0.5);
198   glTexCoord2f(0, 0); glVertex3f (-0.5, -0.5, -0.5);
199   glTexCoord2f(0, 1); glVertex3f ( 0.5, -0.5, -0.5);
200   glTexCoord2f(1, 1); glVertex3f ( 0.5, -0.5,  0.5);
201   bp->scene_polys1++;
202   glEnd();
203   glEndList();
204
205   glNewList (bp->obj_dlist3, GL_COMPILE);
206   glLineWidth (1);
207   glBegin(GL_LINES);
208   glVertex3f(-s, 0, 0); glVertex3f(s, 0, 0);    /* face spikes */
209   glVertex3f(0, -s, 0); glVertex3f(0, s, 0);
210   glVertex3f(0, 0, -s); glVertex3f(0, 0, s);
211   bp->scene_polys2 += 3;
212   glEnd();
213
214   glLineWidth (8);
215   glBegin(GL_LINES);
216   glVertex3f(-s, -s, -s); glVertex3f( s,  s,  s);  /* corner spikes */
217   glVertex3f(-s, -s,  s); glVertex3f( s,  s, -s);
218   glVertex3f(-s,  s, -s); glVertex3f( s, -s,  s);
219   glVertex3f( s, -s, -s); glVertex3f(-s,  s,  s);
220   bp->scene_polys2 += 4;
221   glEnd();
222   glEndList ();
223
224   check_gl_error ("object generation");
225 }
226
227
228 static void
229 init_texture (ModeInfo *mi)
230 {
231   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
232
233   if (bp->tex_data) free (bp->tex_data);
234
235   bp->tex_w = 128;
236   bp->tex_h = 128;
237   bp->tex_data = (unsigned int *)
238     malloc (bp->tex_w * bp->tex_h * 4 * sizeof (unsigned int));
239
240   glGenTextures (1, &bp->texture);
241   glBindTexture (GL_TEXTURE_2D, bp->texture);
242   glTexImage2D (GL_TEXTURE_2D, 0, 4, 128, 128, 0,
243                 GL_RGBA,
244                 /* GL_UNSIGNED_BYTE, */
245                 GL_UNSIGNED_INT_8_8_8_8_REV,
246                 bp->tex_data);
247   glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
248   glTexParameteri (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
249 }
250
251
252 static void
253 render_scene_to_texture (ModeInfo *mi)
254 {
255   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
256
257   glViewport (0, 0, bp->tex_w, bp->tex_h);
258
259   glCallList (bp->scene_dlist1);
260   glCallList (bp->scene_dlist2);
261
262   glBindTexture (GL_TEXTURE_2D, bp->texture);
263   glCopyTexImage2D (GL_TEXTURE_2D, 0, GL_LUMINANCE, 0, 0,
264                     bp->tex_w, bp->tex_h, 0);
265   check_gl_error ("texture");
266
267   glViewport (0, 0, MI_WIDTH(mi), MI_HEIGHT(mi));
268 }
269
270 static void
271 overlay_blur_texture (ModeInfo *mi)
272 {
273   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
274   int w = MI_WIDTH (mi);
275   int h = MI_HEIGHT (mi);
276   int times = blursize;
277   int i;
278   GLfloat inc = 0.02 * (25.0 / times);
279
280   GLfloat spost = 0;                /* starting texture coordinate offset */
281   GLfloat alpha_inc = 0.9 / times;  /* transparency fade factor */
282   GLfloat alpha = 0.2;              /* initial transparency */
283
284   glDisable (GL_TEXTURE_GEN_S);
285   glDisable (GL_TEXTURE_GEN_T);
286
287   glEnable (GL_TEXTURE_2D);
288   glDisable (GL_DEPTH_TEST);
289   glBlendFunc (GL_SRC_ALPHA,GL_ONE);
290   glEnable (GL_BLEND);
291   glBindTexture (GL_TEXTURE_2D, bp->texture);
292
293
294   /* switch to orthographic projection, saving both previous matrixes
295      on their respective stacks.
296    */
297   glMatrixMode (GL_PROJECTION);
298   glPushMatrix();
299   glLoadIdentity();
300   glOrtho (0, w, h, 0, -1, 1);
301   glMatrixMode (GL_MODELVIEW);
302   glPushMatrix();
303   glLoadIdentity();     
304
305
306   alpha_inc = alpha / times;
307
308   mi->polygon_count = bp->scene_polys1 + bp->scene_polys2;
309
310   glBegin (GL_QUADS);
311   for (i = 0; i < times; i++)
312     {
313       glColor4f (1, 1, 1, alpha);
314       glTexCoord2f (0+spost, 1-spost); glVertex2f (0, 0);
315       glTexCoord2f (0+spost, 0+spost); glVertex2f (0, h);
316       glTexCoord2f (1-spost, 0+spost); glVertex2f (w, h);
317       glTexCoord2f (1-spost, 1-spost); glVertex2f (w, 0);
318       spost += inc;
319       alpha -= alpha_inc;
320       mi->polygon_count++;
321     }
322   glEnd();
323
324   /* Switch back to perspective projection, restoring the saved matrixes
325    */
326   glMatrixMode (GL_PROJECTION);
327   glPopMatrix();
328   glMatrixMode (GL_MODELVIEW);
329   glPopMatrix();                
330
331   glEnable (GL_DEPTH_TEST);
332   glDisable (GL_BLEND);
333   glDisable (GL_TEXTURE_2D);
334   glBindTexture (GL_TEXTURE_2D, 0);
335 }
336
337
338 \f
339 /* Startup initialization
340  */
341
342 ENTRYPOINT Bool
343 glblur_handle_event (ModeInfo *mi, XEvent *event)
344 {
345   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
346
347   if (event->xany.type == ButtonPress &&
348       event->xbutton.button == Button1)
349     {
350       bp->button_down_p = True;
351       gltrackball_start (bp->trackball,
352                          event->xbutton.x, event->xbutton.y,
353                          MI_WIDTH (mi), MI_HEIGHT (mi));
354       return True;
355     }
356   else if (event->xany.type == ButtonRelease &&
357            event->xbutton.button == Button1)
358     {
359       bp->button_down_p = False;
360       return True;
361     }
362   else if (event->xany.type == ButtonPress &&
363            (event->xbutton.button == Button4 ||
364             event->xbutton.button == Button5 ||
365             event->xbutton.button == Button6 ||
366             event->xbutton.button == Button7))
367     {
368       gltrackball_mousewheel (bp->trackball, event->xbutton.button, 10,
369                               !!event->xbutton.state);
370       return True;
371     }
372   else if (event->xany.type == MotionNotify &&
373            bp->button_down_p)
374     {
375       gltrackball_track (bp->trackball,
376                          event->xmotion.x, event->xmotion.y,
377                          MI_WIDTH (mi), MI_HEIGHT (mi));
378       return True;
379     }
380
381   return False;
382 }
383
384
385 ENTRYPOINT void 
386 init_glblur (ModeInfo *mi)
387 {
388   glblur_configuration *bp;
389   int wire = MI_IS_WIREFRAME(mi);
390
391   if (!bps) {
392     bps = (glblur_configuration *)
393       calloc (MI_NUM_SCREENS(mi), sizeof (glblur_configuration));
394     if (!bps) {
395       fprintf(stderr, "%s: out of memory\n", progname);
396       exit(1);
397     }
398   }
399
400   bp = &bps[MI_SCREEN(mi)];
401
402   bp->glx_context = init_GL(mi);
403
404   reshape_glblur (mi, MI_WIDTH(mi), MI_HEIGHT(mi));
405
406   if (!wire)
407     {
408       GLfloat gamb[4]= {0.2, 0.2,  0.2, 1.0};
409       GLfloat pos[4] = {0.0, 5.0, 10.0, 1.0};
410       GLfloat amb[4] = {0.2, 0.2,  0.2, 1.0};
411       GLfloat dif[4] = {0.3, 0.3,  0.3, 1.0};
412       GLfloat spc[4] = {0.8, 0.8,  0.8, 1.0};
413       GLfloat shiny = 128;
414
415       glEnable(GL_LIGHTING);
416       glEnable(GL_LIGHT0);
417
418       glEnable(GL_DEPTH_TEST);
419       glEnable(GL_CULL_FACE);
420       glEnable(GL_NORMALIZE);
421       glShadeModel(GL_SMOOTH);
422
423       glLightModelfv (GL_LIGHT_MODEL_AMBIENT, gamb);
424
425       glLightfv(GL_LIGHT0, GL_POSITION, pos);
426       glLightfv(GL_LIGHT0, GL_AMBIENT,  amb);
427       glLightfv(GL_LIGHT0, GL_DIFFUSE,  dif);
428       glLightfv(GL_LIGHT0, GL_SPECULAR, spc);
429
430       glEnable(GL_LIGHTING);
431       glEnable(GL_LIGHT0);
432
433       glMateriali(GL_FRONT, GL_SHININESS, shiny);
434     }
435
436   {
437     Bool spinx=False, spiny=False, spinz=False;
438     double spin_speed   = 0.9;
439     double wander_speed = 0.06;
440
441     char *s = do_spin;
442     while (*s)
443       {
444         if      (*s == 'x' || *s == 'X') spinx = True;
445         else if (*s == 'y' || *s == 'Y') spiny = True;
446         else if (*s == 'z' || *s == 'Z') spinz = True;
447         else if (*s == '0') ;
448         else
449           {
450             fprintf (stderr,
451          "%s: spin must contain only the characters X, Y, or Z (not \"%s\")\n",
452                      progname, do_spin);
453             exit (1);
454           }
455         s++;
456       }
457
458     bp->rot = make_rotator (spinx ? spin_speed : 0,
459                             spiny ? spin_speed : 0,
460                             spinz ? spin_speed : 0,
461                             1.0,
462                             do_wander ? wander_speed : 0,
463                             False);
464     bp->trackball = gltrackball_init ();
465   }
466
467   if (blursize < 0) blursize = 0;
468   if (blursize > 200) blursize = 200;
469
470   bp->ncolors = 128;
471   bp->colors0 = (XColor *) calloc(bp->ncolors, sizeof(XColor));
472   bp->colors1 = (XColor *) calloc(bp->ncolors, sizeof(XColor));
473   bp->colors2 = (XColor *) calloc(bp->ncolors, sizeof(XColor));
474   bp->colors3 = (XColor *) calloc(bp->ncolors, sizeof(XColor));
475   make_smooth_colormap (0, 0, 0, bp->colors0, &bp->ncolors, False, 0, False);
476   make_smooth_colormap (0, 0, 0, bp->colors1, &bp->ncolors, False, 0, False);
477   make_smooth_colormap (0, 0, 0, bp->colors2, &bp->ncolors, False, 0, False);
478   make_smooth_colormap (0, 0, 0, bp->colors3, &bp->ncolors, False, 0, False);
479   bp->ccolor = 0;
480
481   bp->obj_dlist0   = glGenLists (1);
482   bp->obj_dlist1   = glGenLists (1);
483   bp->obj_dlist2   = glGenLists (1);
484   bp->obj_dlist3   = glGenLists (1);
485   bp->scene_dlist1 = glGenLists (1);
486   bp->scene_dlist2 = glGenLists (1);
487
488   init_texture (mi);
489   generate_object (mi);
490 }
491
492
493 /* Render one frame
494  */
495 ENTRYPOINT void
496 draw_glblur (ModeInfo *mi)
497 {
498   glblur_configuration *bp = &bps[MI_SCREEN(mi)];
499   Display *dpy = MI_DISPLAY(mi);
500   Window window = MI_WINDOW(mi);
501
502   GLfloat color0[4] = {0.0, 0.0, 0.0, 1.0};
503   GLfloat color1[4] = {0.0, 0.0, 0.0, 1.0};
504   GLfloat color2[4] = {0.0, 0.0, 0.0, 1.0};
505   GLfloat color3[4] = {0.0, 0.0, 0.0, 1.0};
506   GLfloat spec[4]   = {1.0, 1.0, 1.0, 1.0};
507
508   double rx, ry, rz;
509   double px, py, pz;
510   int extra_polys = 0;
511
512   if (!bp->glx_context)
513     return;
514
515   glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(bp->glx_context));
516
517   /* Decide what we're drawing
518    */
519   if (0 == (random() % 30))
520     {
521       bp->show_cube_p   = (0 == (random() % 10));
522       bp->show_spikes_p = (0 == (random() % 20));
523     }
524
525   /* Select new colors for the various objects
526    */
527   color0[0] = bp->colors0[bp->ccolor].red   / 65536.0;
528   color0[1] = bp->colors0[bp->ccolor].green / 65536.0;
529   color0[2] = bp->colors0[bp->ccolor].blue  / 65536.0;
530
531   color1[0] = bp->colors1[bp->ccolor].red   / 65536.0;
532   color1[1] = bp->colors1[bp->ccolor].green / 65536.0;
533   color1[2] = bp->colors1[bp->ccolor].blue  / 65536.0;
534
535   color2[0] = bp->colors2[bp->ccolor].red   / 65536.0;
536   color2[1] = bp->colors2[bp->ccolor].green / 65536.0;
537   color2[2] = bp->colors2[bp->ccolor].blue  / 65536.0;
538
539   color3[0] = bp->colors3[bp->ccolor].red   / 65536.0;
540   color3[1] = bp->colors3[bp->ccolor].green / 65536.0;
541   color3[2] = bp->colors3[bp->ccolor].blue  / 65536.0;
542
543   bp->ccolor++;
544   if (bp->ccolor >= bp->ncolors) bp->ccolor = 0;
545
546
547   get_position (bp->rot, &px, &py, &pz, !bp->button_down_p);
548   get_rotation (bp->rot, &rx, &ry, &rz, !bp->button_down_p);
549
550   px = (px - 0.5) * 2;
551   py = (py - 0.5) * 2;
552   pz = (pz - 0.5) * 8;
553   rx *= 360;
554   ry *= 360;
555   rz *= 360;
556
557   /* Generate scene_dlist1, which contains the box (not spikes),
558      rotated into position.
559    */
560   glNewList (bp->scene_dlist1, GL_COMPILE);
561   {
562     glMatrixMode (GL_MODELVIEW);
563     glPushMatrix ();
564     glTranslatef (px, py, pz);
565     gltrackball_rotate (bp->trackball);
566     glRotatef (rx, 1.0, 0.0, 0.0);
567     glRotatef (ry, 0.0, 1.0, 0.0);
568     glRotatef (rz, 0.0, 0.0, 1.0);
569
570     glMaterialfv (GL_FRONT_AND_BACK, GL_SPECULAR, spec);
571
572     glMaterialfv (GL_FRONT, GL_AMBIENT_AND_DIFFUSE, color0);
573
574     glCallList (bp->obj_dlist0);
575
576     glMaterialfv (GL_FRONT, GL_AMBIENT_AND_DIFFUSE, color1);
577     glCallList (bp->obj_dlist1);
578
579     glMaterialfv (GL_FRONT, GL_AMBIENT_AND_DIFFUSE, color2);
580     glCallList (bp->obj_dlist2);
581
582     glPopMatrix ();
583   }
584   glEndList ();
585
586
587   /* Generate scene_dlist2, which contains the spikes (not box),
588      rotated into position.
589    */
590   glNewList (bp->scene_dlist2, GL_COMPILE);
591   {
592     glMatrixMode (GL_MODELVIEW);
593     glPushMatrix ();
594     glTranslatef (px, py, pz);
595     gltrackball_rotate (bp->trackball);
596     glRotatef (rx, 1.0, 0.0, 0.0);
597     glRotatef (ry, 0.0, 1.0, 0.0);
598     glRotatef (rz, 0.0, 0.0, 1.0);
599
600     glMaterialfv (GL_FRONT, GL_AMBIENT_AND_DIFFUSE, color3);
601     glCallList (bp->obj_dlist3);
602
603     glPopMatrix ();
604   }
605   glEndList ();
606
607
608   glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
609
610   render_scene_to_texture (mi);
611
612   glClear (GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
613
614   if (bp->show_cube_p || bp->button_down_p)
615     {
616       glCallList (bp->scene_dlist1);
617       extra_polys += bp->scene_polys1;
618     }
619   if (bp->show_spikes_p || bp->button_down_p)
620     {
621       glCallList (bp->scene_dlist2);
622       extra_polys += bp->scene_polys2;
623     }
624
625   overlay_blur_texture (mi);
626   mi->polygon_count += extra_polys;
627
628   glFlush ();
629
630   if (mi->fps_p) do_fps (mi);
631   glFinish();
632
633   glXSwapBuffers(dpy, window);
634 }
635
636 XSCREENSAVER_MODULE ("GLBlur", glblur)
637
638 #endif /* USE_GL */