diff --git a/gdk/gdkdisplay.c b/gdk/gdkdisplay.c index 8c18fa51bc..9add64c62d 100644 --- a/gdk/gdkdisplay.c +++ b/gdk/gdkdisplay.c @@ -253,6 +253,13 @@ gdk_display_class_init (GdkDisplayClass *class) TRUE, G_PARAM_READABLE | G_PARAM_STATIC_STRINGS); + /** + * GdkDisplay:dmabuf-formats: + * + * The dma-buf formats that are supported on this display + * + * Since: 4.14 + */ props[PROP_DMABUF_FORMATS] = g_param_spec_boxed ("dmabuf-formats", NULL, NULL, GDK_TYPE_DMABUF_FORMATS, diff --git a/gdk/gdkdmabufformats.c b/gdk/gdkdmabufformats.c index 744f141e80..ab94060583 100644 --- a/gdk/gdkdmabufformats.c +++ b/gdk/gdkdmabufformats.c @@ -37,7 +37,7 @@ * The list of supported formats is sorted by preference, * with the best formats coming first. * - * The list may contains (format, modfier) pairs where the modifier + * The list may contains (format, modifier) pairs where the modifier * is `DMA_FORMAT_MOD_INVALID`, indicating that **_implicit modifiers_** * may be used with this format. * @@ -152,10 +152,10 @@ gdk_dmabuf_formats_get_format (GdkDmabufFormats *formats, } /** - * gdk_dmabuf_format_contains: + * gdk_dmabuf_formats_contains: * @formats: a `GdkDmabufFormats` * @fourcc: a format code - * @modfier: a format modifier + * @modifier: a format modifier * * Returns whether a given format is contained in @formats. * diff --git a/gdk/gdkdmabuftexture.c b/gdk/gdkdmabuftexture.c index fff3be2982..8599b61e65 100644 --- a/gdk/gdkdmabuftexture.c +++ b/gdk/gdkdmabuftexture.c @@ -39,6 +39,8 @@ * [class@Gdk.DmabufTextureBuilder] object. * * Dma-buf textures can only be created on Linux. + * + * Since: 4.14 */ struct _GdkDmabufTexture diff --git a/gdk/gdkenums.h b/gdk/gdkenums.h index 8c62675aed..f5f50cc7f1 100644 --- a/gdk/gdkenums.h +++ b/gdk/gdkenums.h @@ -160,6 +160,8 @@ typedef enum * reasons * * Error enumeration for `GdkDmabufTexture`. + * + * Since: 4.14 */ typedef enum { GDK_DMABUF_ERROR_NOT_AVAILABLE, diff --git a/gsk/gskrendernodeimpl.c b/gsk/gskrendernodeimpl.c index d99b99ed3b..cfb0050dbe 100644 --- a/gsk/gskrendernodeimpl.c +++ b/gsk/gskrendernodeimpl.c @@ -6771,6 +6771,8 @@ gsk_gl_shader_node_get_args (const GskRenderNode *node) * GskSubsurfaceNode: * * A render node that potentially diverts a part of the scene graph to a subsurface. + * + * Since: 4.14 */ struct _GskSubsurfaceNode { diff --git a/gtk/gtkgraphicsoffload.c b/gtk/gtkgraphicsoffload.c index b6d6664e13..42da3e245a 100644 --- a/gtk/gtkgraphicsoffload.c +++ b/gtk/gtkgraphicsoffload.c @@ -69,6 +69,8 @@ * GDK_DEBUG=dmabuf * * The GTK inspector provides a visual debugging tool for graphics offload. + * + * Since: 4.14 */ struct _GtkGraphicsOffload diff --git a/gtk/gtkprintdialog.c b/gtk/gtkprintdialog.c index dd226bbee7..b0d872c58d 100644 --- a/gtk/gtkprintdialog.c +++ b/gtk/gtkprintdialog.c @@ -60,6 +60,8 @@ * * Applications may wish to store the page_setup and print_settings from the print setup * and copy them to the PrintDialog if they want to keep using them. + * + * Since: 4.14 */ struct _GtkPrintSetup