mirror of
https://github.com/brl/mutter.git
synced 2025-02-02 06:42:28 +00:00
clutter/stage: Add documentation and annotations
Increase the documentation coverage and add some missing annotations to be able to use some methods correctly with the GObject Introspection. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1545>
This commit is contained in:
parent
c88615aac8
commit
25bb5676df
@ -3223,6 +3223,20 @@ clutter_stage_presented (ClutterStage *stage,
|
|||||||
g_signal_emit (stage, stage_signals[PRESENTED], 0, view, frame_info);
|
g_signal_emit (stage, stage_signals[PRESENTED], 0, view, frame_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* clutter_stage_get_capture_final_size:
|
||||||
|
* @stage: a #ClutterStage actor
|
||||||
|
* @rect: a #cairo_rectangle_int_t
|
||||||
|
* @out_width: (out) (optional): the final width
|
||||||
|
* @out_height: (out) (optional): the final height
|
||||||
|
* @out_scale: (out) (optional): the final scale factor
|
||||||
|
*
|
||||||
|
* Get the size of the framebuffer one must pass to
|
||||||
|
* clutter_stage_paint_to_buffer() or clutter_stage_paint_to_framebuffer()
|
||||||
|
* would be used with the same @rect.
|
||||||
|
*
|
||||||
|
* Returns: %TRUE if the size has been retrieved, %FALSE otherwise.
|
||||||
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
clutter_stage_get_capture_final_size (ClutterStage *stage,
|
clutter_stage_get_capture_final_size (ClutterStage *stage,
|
||||||
cairo_rectangle_int_t *rect,
|
cairo_rectangle_int_t *rect,
|
||||||
@ -3320,6 +3334,21 @@ clutter_stage_paint_to_framebuffer (ClutterStage *stage,
|
|||||||
clutter_paint_context_destroy (paint_context);
|
clutter_paint_context_destroy (paint_context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* clutter_stage_paint_to_buffer:
|
||||||
|
* @stage: a #ClutterStage actor
|
||||||
|
* @rect: a #cairo_rectangle_int_t
|
||||||
|
* @scale: the scale
|
||||||
|
* @data: (inout) (array) (element-type guint8): a pointer to the data
|
||||||
|
* @stride: stride of the image surface
|
||||||
|
* @format: the pixel format
|
||||||
|
* @paint_flags: the #ClutterPaintFlag
|
||||||
|
* @error: the error
|
||||||
|
*
|
||||||
|
* Take a snapshot of the stage to a provided buffer.
|
||||||
|
*
|
||||||
|
* Returns: %TRUE is the buffer has been paint successfully, %FALSE otherwise.
|
||||||
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
clutter_stage_paint_to_buffer (ClutterStage *stage,
|
clutter_stage_paint_to_buffer (ClutterStage *stage,
|
||||||
const cairo_rectangle_int_t *rect,
|
const cairo_rectangle_int_t *rect,
|
||||||
|
@ -210,9 +210,9 @@ void clutter_stage_schedule_update (ClutterStage *stage);
|
|||||||
CLUTTER_EXPORT
|
CLUTTER_EXPORT
|
||||||
gboolean clutter_stage_get_capture_final_size (ClutterStage *stage,
|
gboolean clutter_stage_get_capture_final_size (ClutterStage *stage,
|
||||||
cairo_rectangle_int_t *rect,
|
cairo_rectangle_int_t *rect,
|
||||||
int *width,
|
int *out_width,
|
||||||
int *height,
|
int *out_height,
|
||||||
float *scale);
|
float *out_scale);
|
||||||
|
|
||||||
CLUTTER_EXPORT
|
CLUTTER_EXPORT
|
||||||
void clutter_stage_paint_to_framebuffer (ClutterStage *stage,
|
void clutter_stage_paint_to_framebuffer (ClutterStage *stage,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user