~aurelien-riv/+junk/livewallpaper

« back to all changes in this revision

Viewing changes to include/livewallpaper/texture.h

  • 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:
94
94
 */
95
95
struct _LwTextureMatrix
96
96
{
97
 
        float xx, yx;
98
 
        float xy, yy;
99
 
        float x0, y0;
 
97
        gfloat xx, yx;
 
98
        gfloat xy, yy;
 
99
        gfloat x0, y0;
100
100
};
101
101
 
102
102
#define LW_TYPE_TEXTURE            (lw_texture_get_type())
136
136
 
137
137
GType lw_texture_get_type(void);
138
138
 
139
 
LwTexture *lw_texture_new_from_file(const char *filename, GError **error);
 
139
LwTexture *lw_texture_new_from_file(const gchar *filename, GError **error);
140
140
LwTexture *lw_texture_new_from_pixbuf(GdkPixbuf *pixbuf);
141
141
LwTexture *lw_texture_new_from_data(const guchar *data, guint width, guint height, guint format, guint type);
142
142