From 50a3f84191e5db58599b7145e47c88b9040f714f Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Fri, 29 Apr 2016 11:32:37 -0500 Subject: [PATCH] Move the test for resetting no native surface to after caps checks This is supposed to be functionally equivalent, but is a little tricky to prove. The benefit of this is a simplification to the callers, which no longer have to consider gl capabilities in the call, as that is now tested for internally. --- src/bin/e_comp_object.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 033a46cd3..b9e95022c 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -3671,7 +3671,6 @@ e_comp_object_native_surface_set(Evas_Object *obj, Eina_Bool set) EINA_SAFETY_ON_NULL_RETURN(cw->ec); if (cw->ec->input_only) return; set = !!set; - if ((!set) && (!cw->native)) return; if (set) { @@ -3692,6 +3691,8 @@ e_comp_object_native_surface_set(Evas_Object *obj, Eina_Bool set) if (set) set = (!!cw->ns) || e_pixmap_native_surface_init(cw->ec->pixmap, &ns); } + if ((!set) && (!cw->native)) return; + cw->native = set; evas_object_image_native_surface_set(cw->obj, set && (!cw->blanked) ? (cw->ns ?: &ns) : NULL);