backend: Undeprecated clutter_backend_get_resolution()
Since the Settings:font-dpi property is exposed as 1024 * real_dpi in order to make the setting as neutral as possible (and allow XSETTINGS to use it natively) we need a simple API returning the DPI using a floating point value.
This commit is contained in:
@ -98,7 +98,6 @@ ClutterBackend *clutter_get_default_backend (void);
|
||||
#ifndef CLUTTER_DISABLE_DEPRECATED
|
||||
void clutter_backend_set_resolution (ClutterBackend *backend,
|
||||
gdouble dpi);
|
||||
gdouble clutter_backend_get_resolution (ClutterBackend *backend);
|
||||
void clutter_backend_set_double_click_time (ClutterBackend *backend,
|
||||
guint msec);
|
||||
guint clutter_backend_get_double_click_time (ClutterBackend *backend);
|
||||
@ -110,6 +109,8 @@ void clutter_backend_set_font_name (ClutterBa
|
||||
G_CONST_RETURN gchar * clutter_backend_get_font_name (ClutterBackend *backend);
|
||||
#endif /* CLUTTER_DISABLE_DEPRECATED */
|
||||
|
||||
gdouble clutter_backend_get_resolution (ClutterBackend *backend);
|
||||
|
||||
void clutter_backend_set_font_options (ClutterBackend *backend,
|
||||
const cairo_font_options_t *options);
|
||||
const cairo_font_options_t *clutter_backend_get_font_options (ClutterBackend *backend);
|
||||
|
Reference in New Issue
Block a user