~aurelien-riv/+junk/livewallpaper

« back to all changes in this revision

Viewing changes to plugins/galaxy/src/galaxy.c

  • Committer: Aurélien RIVIÈRE
  • Date: 2012-11-06 23:23:17 UTC
  • Revision ID: aurelien.riv@gmail.com-20121106232317-ny5aed57qnl6chl4
Some C types replaced with Glib types

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
        gint rotate_y;
50
50
        gint rotate_z;
51
51
 
52
 
        double zoom;
 
52
        gdouble zoom;
53
53
 
54
 
        double offset_x;
55
 
        double offset_y;
 
54
        gdouble offset_x;
 
55
        gdouble offset_y;
56
56
 
57
57
        LwTexture *lightTexture;
58
58
        LwBackground *background;
183
183
static void
184
184
galaxy_plugin_adjust_viewport(LwLivewallpaperPlugin *plugin, LwOutput *output)
185
185
{
186
 
        double xmax = YMAX * lw_output_get_aspect_ratio(output);
 
186
        gdouble xmax = YMAX * lw_output_get_aspect_ratio(output);
187
187
        
188
188
        (void) plugin;
189
189