g-i: Drop unneeded since/stability annotations

They are no longer useful since the merge of cogl inside mutter

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2708>
This commit is contained in:
Bilal Elmoussaoui
2022-11-22 12:54:44 +01:00
parent 3393db942a
commit bb5af3a6bd
50 changed files with 0 additions and 1009 deletions

View File

@ -1566,9 +1566,6 @@ meta_input_device_native_update_leds_in_impl (MetaInputDeviceNative *device,
* Retrieves the libinput_device struct held in @device.
*
* Returns: The libinput_device struct
*
* Since: 1.20
* Stability: unstable
**/
struct libinput_device *
meta_input_device_native_get_libinput_device (ClutterInputDevice *device)

View File

@ -46,8 +46,6 @@
* or has used the event to update internal state without taking
* any exclusive action. %META_X11_FILTER_TRANSLATE will not
* occur.
*
* Since: 0.8
*/
MetaX11FilterReturn
meta_x11_handle_event (MetaBackend *backend,

View File

@ -40,8 +40,6 @@ log_func (const gchar *log_domain,
* @argv: (inout) (array length=argc) (nullable): array of arguments
*
* Initializes the Clutter test environment.
*
* Since: 1.18
*/
void
clutter_test_init (int *argc,
@ -68,8 +66,6 @@ clutter_test_init (int *argc,
* Retrieves the #ClutterStage used for testing.
*
* Return value: (transfer none): the stage used for testing
*
* Since: 1.18
*/
ClutterActor *
clutter_test_get_stage (void)
@ -153,8 +149,6 @@ clutter_test_func_wrapper (gconstpointer data_)
* Adds a test unit to the Clutter test environment.
*
* See also: g_test_add()
*
* Since: 1.18
*/
void
clutter_test_add (const char *test_path,
@ -172,8 +166,6 @@ clutter_test_add (const char *test_path,
* Adds a test unit to the Clutter test environment.
*
* See also: g_test_add_data_func()
*
* Since: 1.18
*/
void
clutter_test_add_data (const char *test_path,
@ -193,8 +185,6 @@ clutter_test_add_data (const char *test_path,
* Adds a test unit to the Clutter test environment.
*
* See also: g_test_add_data_func_full()
*
* Since: 1.18
*/
void
clutter_test_add_data_full (const char *test_path,
@ -249,8 +239,6 @@ clutter_test_add_data_full (const char *test_path,
* ]|
*
* Return value: the exit code for the test suite
*
* Since: 1.18
*/
int
clutter_test_run (void)
@ -374,8 +362,6 @@ on_key_press_event (ClutterActor *stage,
* actor found there with the given @actor.
*
* Returns: %TRUE if the actor at the given coordinates matches
*
* Since: 1.18
*/
gboolean
clutter_test_check_actor_at_point (ClutterActor *stage,
@ -435,8 +421,6 @@ clutter_test_check_actor_at_point (ClutterActor *stage,
* component of @color and @result is ignored.
*
* Returns: %TRUE if the colors match
*
* Since: 1.18
*/
gboolean
clutter_test_check_color_at_point (ClutterActor *stage,

View File

@ -41,8 +41,6 @@ G_BEGIN_DECLS
* @func: the GTestFunc function
*
* Adds @func at the given @path in the test suite.
*
* Since: 1.18
*/
#define CLUTTER_TEST_UNIT(path,func) \
clutter_test_add (path, func);
@ -75,8 +73,6 @@ G_BEGIN_DECLS
* return clutter_test_run ();
* }
* ]|
*
* Since: 1.18
*/
#define CLUTTER_TEST_SUITE(units) \
int \