diff options
-rw-r--r-- | src/policy-default.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/policy-default.c b/src/policy-default.c index 3363528..16c8b2d 100644 --- a/src/policy-default.c +++ b/src/policy-default.c @@ -58,6 +58,13 @@ ivi_policy_default_surface_activate(struct ivi_surface *surf, void *user_data) } static bool +ivi_policy_default_surface_deactivate(struct ivi_surface *surf, void *user_data) +{ + /* verify that the surface should be de-activated to */ + return true; +} + +static bool ivi_policy_default_surface_activate_default(struct ivi_surface *surf, void *user_data) { /* verify that the surface should be switched to */ @@ -96,6 +103,7 @@ static const struct ivi_policy_api policy_api = { .surface_create = ivi_policy_default_surface_create, .surface_commited = ivi_policy_default_surface_commmited, .surface_activate = ivi_policy_default_surface_activate, + .surface_deactivate = ivi_policy_default_surface_deactivate, .surface_activate_by_default = ivi_policy_default_surface_activate_default, .policy_rule_allow_to_add = ivi_policy_default_allow_to_add, .policy_rule_try_event = ivi_policy_default_try_event, |