mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
gldisplay: some annotation updates/typo fixes
This commit is contained in:
parent
01cf3547dd
commit
a20d064304
2 changed files with 6 additions and 5 deletions
|
@ -521,7 +521,7 @@ gst_gl_display_create_context (GstGLDisplay * display,
|
||||||
*
|
*
|
||||||
* It requires the display's object lock to be held.
|
* It requires the display's object lock to be held.
|
||||||
*
|
*
|
||||||
* Returns: a new #GstGLWindow for @display or %NULL.
|
* Returns: (transfer full): a new #GstGLWindow for @display or %NULL.
|
||||||
*/
|
*/
|
||||||
GstGLWindow *
|
GstGLWindow *
|
||||||
gst_gl_display_create_window (GstGLDisplay * display)
|
gst_gl_display_create_window (GstGLDisplay * display)
|
||||||
|
@ -576,14 +576,15 @@ gst_gl_display_remove_window (GstGLDisplay * display, GstGLWindow * window)
|
||||||
/**
|
/**
|
||||||
* gst_gl_display_find_window:
|
* gst_gl_display_find_window:
|
||||||
* @display: a #GstGLDisplay
|
* @display: a #GstGLDisplay
|
||||||
* @data: some data to pass to @compare_func
|
* @data: (closure): some data to pass to @compare_func
|
||||||
* @compare_func: a comparison function to run
|
* @compare_func: (scope call): a comparison function to run
|
||||||
*
|
*
|
||||||
* Execute @compare_func over the list of windows stored by @display. The
|
* Execute @compare_func over the list of windows stored by @display. The
|
||||||
* first argment to @compare_func is the #GstGLWindow being checked and the
|
* first argment to @compare_func is the #GstGLWindow being checked and the
|
||||||
* second argument is @data.
|
* second argument is @data.
|
||||||
*
|
*
|
||||||
* Returns: The first #GstGLWindow that causes a match from @compare_func
|
* Returns: (transfer none): The first #GstGLWindow that causes a match
|
||||||
|
* from @compare_func
|
||||||
*
|
*
|
||||||
* Since: 1.12
|
* Since: 1.12
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -134,7 +134,7 @@ gboolean gst_gl_display_add_context (GstGLDisplay * display,
|
||||||
|
|
||||||
GstGLWindow * gst_gl_display_create_window (GstGLDisplay * display);
|
GstGLWindow * gst_gl_display_create_window (GstGLDisplay * display);
|
||||||
gboolean gst_gl_display_remove_window (GstGLDisplay * display, GstGLWindow * window);
|
gboolean gst_gl_display_remove_window (GstGLDisplay * display, GstGLWindow * window);
|
||||||
GstGLWindow * gst_gl_display_find_window (GstGLDisplay * display, gpointer data, GCompareFunc compar_func);
|
GstGLWindow * gst_gl_display_find_window (GstGLDisplay * display, gpointer data, GCompareFunc compare_func);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue