mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 03:22:04 +00:00
2007-06-06 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-texture.c: * clutter/clutter-texture.h: Fix GError Args.
This commit is contained in:
parent
acb0772fe0
commit
9789bfc69e
@ -1167,7 +1167,7 @@ clutter_texture_set_from_rgb_data (ClutterTexture *texture,
|
|||||||
gint rowstride,
|
gint rowstride,
|
||||||
gint bpp,
|
gint bpp,
|
||||||
ClutterTextureFlags flags,
|
ClutterTextureFlags flags,
|
||||||
GError *error)
|
GError **error)
|
||||||
{
|
{
|
||||||
ClutterTexturePrivate *priv;
|
ClutterTexturePrivate *priv;
|
||||||
gboolean texture_dirty = TRUE;
|
gboolean texture_dirty = TRUE;
|
||||||
@ -1298,7 +1298,7 @@ clutter_texture_set_from_yuv_data (ClutterTexture *texture,
|
|||||||
gint width,
|
gint width,
|
||||||
gint height,
|
gint height,
|
||||||
ClutterTextureFlags flags,
|
ClutterTextureFlags flags,
|
||||||
GError *error)
|
GError **error)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
gboolean texture_dirty = TRUE;
|
gboolean texture_dirty = TRUE;
|
||||||
@ -1391,7 +1391,7 @@ clutter_texture_set_from_yuv_data (ClutterTexture *texture,
|
|||||||
gboolean
|
gboolean
|
||||||
clutter_texture_set_pixbuf (ClutterTexture *texture,
|
clutter_texture_set_pixbuf (ClutterTexture *texture,
|
||||||
GdkPixbuf *pixbuf,
|
GdkPixbuf *pixbuf,
|
||||||
GError *error)
|
GError **error)
|
||||||
{
|
{
|
||||||
ClutterTexturePrivate *priv;
|
ClutterTexturePrivate *priv;
|
||||||
|
|
||||||
|
@ -87,16 +87,16 @@ gboolean clutter_texture_set_from_rgb_data (ClutterTexture *texture,
|
|||||||
gint rowstride,
|
gint rowstride,
|
||||||
gint bpp,
|
gint bpp,
|
||||||
ClutterTextureFlags flags,
|
ClutterTextureFlags flags,
|
||||||
GError *error);
|
GError **error);
|
||||||
gboolean clutter_texture_set_from_yuv_data (ClutterTexture *texture,
|
gboolean clutter_texture_set_from_yuv_data (ClutterTexture *texture,
|
||||||
const guchar *data,
|
const guchar *data,
|
||||||
gint width,
|
gint width,
|
||||||
gint height,
|
gint height,
|
||||||
ClutterTextureFlags flags,
|
ClutterTextureFlags flags,
|
||||||
GError *error);
|
GError **error);
|
||||||
gboolean clutter_texture_set_pixbuf (ClutterTexture *texture,
|
gboolean clutter_texture_set_pixbuf (ClutterTexture *texture,
|
||||||
GdkPixbuf *pixbuf,
|
GdkPixbuf *pixbuf,
|
||||||
GError *error);
|
GError **error);
|
||||||
GdkPixbuf * clutter_texture_get_pixbuf (ClutterTexture *texture);
|
GdkPixbuf * clutter_texture_get_pixbuf (ClutterTexture *texture);
|
||||||
void clutter_texture_get_base_size (ClutterTexture *texture,
|
void clutter_texture_get_base_size (ClutterTexture *texture,
|
||||||
gint *width,
|
gint *width,
|
||||||
|
Loading…
Reference in New Issue
Block a user