diff options
author | Matthias Clasen <mclasen@redhat.com> | 2018-02-05 20:13:20 +0100 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2018-02-06 01:16:32 -0500 |
commit | 4c150d8eb518c35c484802e5cd7da572e4030f25 (patch) | |
tree | 8867f973fd6c9737b5d7f05d6945817f354a37e2 /gdk/gdkdrawcontext.c | |
parent | 2616e6857cc136c654b64dd16839ddf89f4b5c62 (diff) | |
download | gtk+-4c150d8eb518c35c484802e5cd7da572e4030f25.tar.gz |
The big versioning cleanup
Remove all the old 2.x and 3.x version annotations.
GTK+ 4 is a new start, and from the perspective of a
GTK+ 4 developer all these APIs have been around since
the beginning.
Diffstat (limited to 'gdk/gdkdrawcontext.c')
-rw-r--r-- | gdk/gdkdrawcontext.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/gdk/gdkdrawcontext.c b/gdk/gdkdrawcontext.c index 1ca7d41942..2566d01ca6 100644 --- a/gdk/gdkdrawcontext.c +++ b/gdk/gdkdrawcontext.c @@ -136,8 +136,6 @@ gdk_draw_context_class_init (GdkDrawContextClass *klass) * GdkDrawContext:display: * * The #GdkDisplay used to create the #GdkDrawContext. - * - * Since: 3.90 */ pspecs[PROP_DISPLAY] = g_param_spec_object ("display", @@ -151,8 +149,6 @@ gdk_draw_context_class_init (GdkDrawContextClass *klass) * GdkDrawContext:window: * * The #GdkWindow the gl context is bound to. - * - * Since: 3.90 */ pspecs[PROP_WINDOW] = g_param_spec_object ("window", @@ -180,8 +176,6 @@ gdk_draw_context_init (GdkDrawContext *self) * onto it. * * Returns: %TRUE if the context is between begin_frame() and end_frame() calls. - * - * Since: 3.90 */ gboolean gdk_draw_context_is_drawing (GdkDrawContext *context) @@ -205,8 +199,6 @@ gdk_draw_context_is_drawing (GdkDrawContext *context) * The function does not clear the background. Clearing the backgroud is the * job of the renderer. The contents of the backbuffer are undefined after this * function call. - * - * Since: 3.90 */ void gdk_draw_context_begin_frame (GdkDrawContext *context, @@ -234,8 +226,6 @@ gdk_draw_context_begin_frame (GdkDrawContext *context, * This function may call `glFlush()` implicitly before returning; it * is not recommended to call `glFlush()` explicitly before calling * this function. - * - * Since: 3.16 */ void gdk_draw_context_end_frame (GdkDrawContext *context, @@ -259,8 +249,6 @@ gdk_draw_context_end_frame (GdkDrawContext *context, * Retrieves the #GdkDisplay the @context is created for * * Returns: (nullable) (transfer none): a #GdkDisplay or %NULL - * - * Since: 3.90 */ GdkDisplay * gdk_draw_context_get_display (GdkDrawContext *context) @@ -279,8 +267,6 @@ gdk_draw_context_get_display (GdkDrawContext *context) * Retrieves the #GdkWindow used by the @context. * * Returns: (nullable) (transfer none): a #GdkWindow or %NULL - * - * Since: 3.90 */ GdkWindow * gdk_draw_context_get_window (GdkDrawContext *context) |