Signal
ClutterStage::paint-view
since: 13
Declaration
void
paint_view (
ClutterStage* self,
ClutterStageView* view,
cairo_region_t* redraw_clip,
ClutterFrame* frame,
gpointer user_data
)
Description [src]
The signal is emitted before a ClutterStageView
is being painted.
The view is painted in the default handler. Hence, if you want to perform
some action after the view is painted, like reading the contents of the
framebuffer, use g_signal_connect_after()
or pass G_CONNECT_AFTER
.
Default handler: The default handler is called after the handlers added via |
Available since: 13 |
Parameters
view
-
Type:
ClutterStageView
A
ClutterStageView
.The data is owned by the caller of the function. redraw_clip
-
Type:
cairo_region_t
A #cairo_region_t with the redraw clip.
The data is owned by the caller of the function. frame
-
Type:
ClutterFrame
A
ClutterFrame
.The data is owned by the caller of the function.