OSX: add missing memory pool wrapup

Bug #910 - OSX: missing memory pool

	* clutter/osx/clutter-backend-osx.c (clutter_backend_osx_redraw):
	Add missing memory pool wrapup.
This commit is contained in:
Tommi Komulainen 2008-06-05 21:27:28 +00:00
parent e783591eab
commit cba23c0b26
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-06-05 Tommi Komulainen <tommi.komulainen@iki.fi>
Bug #910 - OSX: missing memory pool
* clutter/osx/clutter-backend-osx.c (clutter_backend_osx_redraw):
Add missing memory pool wrapup.
2008-06-05 Tommi Komulainen <tommi.komulainen@iki.fi>
Bug #909 - OSX: missing NULL pointer handling

View File

@ -129,7 +129,12 @@ clutter_backend_osx_redraw (ClutterBackend *backend)
ClutterStageOSX *stage_osx;
stage_osx = CLUTTER_STAGE_OSX (self->stage);
CLUTTER_OSX_POOL_ALLOC();
[stage_osx->view setNeedsDisplay: YES];
CLUTTER_OSX_POOL_RELEASE();
}
/*************************************************************************/