From af21fcc73467759729d2425eba19d30222834a4f Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 24 Aug 2012 10:44:04 +0100 Subject: [PATCH] 2.0: Remove deprecated API from clutter-util.c --- clutter/clutter-util.c | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/clutter/clutter-util.c b/clutter/clutter-util.c index 20dd2f985..0fc945dd6 100644 --- a/clutter/clutter-util.c +++ b/clutter/clutter-util.c @@ -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