color-profile: Add API to get file path
Each color profile has a corresponding ICC profile saved on the file system. The getter returns a file path for that ICC profile file. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2165>
This commit is contained in:
parent
16149d7c25
commit
22064055be
@ -368,6 +368,12 @@ meta_color_profile_get_id (MetaColorProfile *color_profile)
|
||||
return color_profile->cd_profile_id;
|
||||
}
|
||||
|
||||
const char *
|
||||
meta_color_profile_get_file_path (MetaColorProfile *color_profile)
|
||||
{
|
||||
return cd_profile_get_filename (color_profile->cd_profile);
|
||||
}
|
||||
|
||||
const char *
|
||||
meta_color_profile_get_brightness_profile (MetaColorProfile *color_profile)
|
||||
{
|
||||
|
@ -56,6 +56,8 @@ gboolean meta_color_profile_is_ready (MetaColorProfile *color_profile);
|
||||
META_EXPORT_TEST
|
||||
const char * meta_color_profile_get_id (MetaColorProfile *color_profile);
|
||||
|
||||
const char * meta_color_profile_get_file_path (MetaColorProfile *color_profile);
|
||||
|
||||
const char * meta_color_profile_get_brightness_profile (MetaColorProfile *color_profile);
|
||||
|
||||
#endif /* META_COLOR_PROFILE_H */
|
||||
|
Loading…
Reference in New Issue
Block a user