~ubuntu-branches/ubuntu/lucid/xscreensaver/lucid

« back to all changes in this revision

Viewing changes to hacks/glx/toaster_handle.c

  • Committer: Bazaar Package Importer
  • Author(s): Oliver Grawert
  • Date: 2007-12-06 09:53:12 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071206095312-fkzcwe4vqm50z208
Tags: 5.04-1ubuntu1
* Merge from debian unstable, remaining changes:
  - split xscreensaver into xscreensaver, xscreensaver-data (hacks we ship),
    xscreensaver-data-extra (hacks in universe). split out gl hacks for
    universe to xscreensaver-gl-extra
  - use fridge for rss screensavers
  - create and install .desktop files for gnome-screensaver

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "gllist.h"
2
 
static float data[]={
 
2
static const float data[]={
3
3
        0,0,1,0.5,-0.094169,0.035224,
4
4
        0,0,1,-0.356403,0.038624,0.035224,
5
5
        0,0,1,-0.5,-0.094169,0.035224,
55
55
        -0.180414,0.983591,0,-0.356403,0.038624,0.035224,
56
56
        -0.180414,0.983591,0,-0.210084,0.094169,0.035224
57
57
};
58
 
static struct gllist frame={GL_N3F_V3F,GL_TRIANGLES,54,data,NULL};
59
 
struct gllist *toaster_handle=&frame;
 
58
static const struct gllist frame={GL_N3F_V3F,GL_TRIANGLES,54,data,NULL};
 
59
const struct gllist *toaster_handle=&frame;