mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
clutter: Export private function to get debug flags
We're shuffling some code into src/backends, that needs knowing about these flags to minimize immediate refactors. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1862>
This commit is contained in:
parent
dd9d40aedb
commit
7712b58170
@ -2192,6 +2192,19 @@ clutter_debug_set_max_render_time_constant (int max_render_time_constant_us)
|
||||
clutter_max_render_time_constant_us = max_render_time_constant_us;
|
||||
}
|
||||
|
||||
void
|
||||
clutter_get_debug_flags (ClutterDebugFlag *debug_flags,
|
||||
ClutterDrawDebugFlag *draw_flags,
|
||||
ClutterPickDebugFlag *pick_flags)
|
||||
{
|
||||
if (debug_flags)
|
||||
*debug_flags = clutter_debug_flags;
|
||||
if (draw_flags)
|
||||
*draw_flags = clutter_paint_debug_flags;
|
||||
if (pick_flags)
|
||||
*pick_flags = clutter_pick_debug_flags;
|
||||
}
|
||||
|
||||
void
|
||||
_clutter_set_sync_to_vblank (gboolean sync_to_vblank)
|
||||
{
|
||||
|
@ -102,6 +102,11 @@ CLUTTER_EXPORT
|
||||
void clutter_stage_repick_device (ClutterStage *stage,
|
||||
ClutterInputDevice *device);
|
||||
|
||||
CLUTTER_EXPORT
|
||||
void clutter_get_debug_flags (ClutterDebugFlag *debug_flags,
|
||||
ClutterDrawDebugFlag *draw_flags,
|
||||
ClutterPickDebugFlag *pick_flags);
|
||||
|
||||
#undef __CLUTTER_H_INSIDE__
|
||||
|
||||
#endif /* __CLUTTER_MUTTER_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user