diff options
Diffstat (limited to 'hacks/glx/hypnowheel.c')
-rw-r--r-- | hacks/glx/hypnowheel.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/hacks/glx/hypnowheel.c b/hacks/glx/hypnowheel.c index 0602e6e..76896da 100644 --- a/hacks/glx/hypnowheel.c +++ b/hacks/glx/hypnowheel.c @@ -24,7 +24,6 @@ "*wireframe: False \n" \ "*suppressRotationAnimation: True\n" \ -# define free_hypnowheel 0 # define release_hypnowheel 0 #undef countof #define countof(x) (sizeof((x))/sizeof((*x))) @@ -243,7 +242,7 @@ draw_hypnowheel (ModeInfo *mi) if (!bp->glx_context) return; - glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *(bp->glx_context)); + glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *bp->glx_context); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); @@ -317,6 +316,22 @@ hypnowheel_handle_event (ModeInfo *mi, XEvent *event) } +ENTRYPOINT void +free_hypnowheel (ModeInfo *mi) +{ + hypnowheel_configuration *bp = &bps[MI_SCREEN(mi)]; + int i; + if (!bp->glx_context) return; + glXMakeCurrent(MI_DISPLAY(mi), MI_WINDOW(mi), *bp->glx_context); + if (bp->colors) free (bp->colors); + if (bp->rot) free_rotator (bp->rot); + if (bp->discs) { + for (i = 0; i < nlayers; i++) + if (bp->discs[i].rot) free_rotator (bp->discs[i].rot); + free (bp->discs); + } +} + XSCREENSAVER_MODULE ("Hypnowheel", hypnowheel) #endif /* USE_GL */ |