mirror of
https://github.com/brl/mutter.git
synced 2025-07-29 04:58:03 +00:00
* clutter/clutter-texture.c:
Correct documentation about accepted pixel formats * tests/test-stage-read-pixels.c: (main): Don't try to free a ClutterTexture after main, fixes segfault on quit
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2008-07-01 Chris Lord <chris@openedhand.com>
|
||||
|
||||
* clutter/clutter-texture.c:
|
||||
Correct documentation about accepted pixel formats
|
||||
|
||||
* tests/test-stage-read-pixels.c: (main):
|
||||
Don't try to free a ClutterTexture after main, fixes segfault on quit
|
||||
|
||||
2008-07-01 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-behaviour-bspline.h:
|
||||
|
@@ -1072,7 +1072,8 @@ clutter_texture_set_from_data (ClutterTexture *texture,
|
||||
* @width: Width in pixels of image data.
|
||||
* @height: Height in pixels of image data
|
||||
* @rowstride: Distance in bytes between row starts.
|
||||
* @bpp: bytes per pixel ( Currently only 4 supported )
|
||||
* @bpp: bytes per pixel (Currently only 3 and 4 supported,
|
||||
* depending on @has_alpha)
|
||||
* @flags: #ClutterTextureFlags
|
||||
* @error: return location for a #GError, or %NULL.
|
||||
*
|
||||
@@ -1476,7 +1477,8 @@ clutter_texture_get_base_size (ClutterTexture *texture,
|
||||
* @width: Width in pixels of region to update.
|
||||
* @height: Height in pixels of region to update.
|
||||
* @rowstride: Distance in bytes between row starts on source buffer.
|
||||
* @bpp: bytes per pixel ( Currently only 4 supported )
|
||||
* @bpp: bytes per pixel (Currently only 3 and 4 supported,
|
||||
* depending on @has_alpha)
|
||||
* @flags: #ClutterTextureFlags
|
||||
* @error: return location for a #GError, or %NULL
|
||||
*
|
||||
|
@@ -274,7 +274,6 @@ main (int argc, char *argv[])
|
||||
|
||||
clutter_main ();
|
||||
|
||||
g_free (oh->tv);
|
||||
g_free (oh->hand);
|
||||
g_free (oh);
|
||||
|
||||
|
Reference in New Issue
Block a user