1
0
Fork 0

2.0: Remove deprecated API from clutter-util.c

This commit is contained in:
Emmanuele Bassi 2012-08-24 10:44:04 +01:00
parent 270ceebf8d
commit af21fcc734

View file

@ -45,27 +45,6 @@
#include "deprecated/clutter-util.h"
/**
* clutter_util_next_p2:
* @a: Value to get the next power
*
* Calculates the nearest power of two, greater than or equal to @a.
*
* Return value: The nearest power of two, greater or equal to @a.
*
* Deprecated: 1.2
*/
gint
clutter_util_next_p2 (gint a)
{
int rval = 1;
while (rval < a)
rval <<= 1;
return rval;
}
/*< private >
* _clutter_gettext:
* @str: a string to localize