diff options
author | ChunEon Park <hermet@hermet.pe.kr> | 2014-11-26 12:22:55 +0900 |
---|---|---|
committer | ChunEon Park <hermet@hermet.pe.kr> | 2014-11-26 12:22:55 +0900 |
commit | 215b52ecc108b2b13814534d75565152e8c0973a (patch) | |
tree | 9d0864d0a403d66e50f8ece399565e947ea746cb /src/lib/evas/canvas | |
parent | d3d306ec5cca2023c0612106d3990d63794c6279 (diff) |
evas/map : set antialias context for map rendering.
Diffstat (limited to 'src/lib/evas/canvas')
-rw-r--r-- | src/lib/evas/canvas/evas_object_image.c | 3 | ||||
-rw-r--r-- | src/lib/evas/canvas/evas_object_rectangle.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/evas/canvas/evas_object_image.c b/src/lib/evas/canvas/evas_object_image.c index 03f422d0ba..fdd716147e 100644 --- a/src/lib/evas/canvas/evas_object_image.c +++ b/src/lib/evas/canvas/evas_object_image.c | |||
@@ -2718,7 +2718,8 @@ evas_draw_image_map_async_check(Evas_Object_Protected_Data *obj, | |||
2718 | Eina_Bool do_async) | 2718 | Eina_Bool do_async) |
2719 | { | 2719 | { |
2720 | Eina_Bool async_unref; | 2720 | Eina_Bool async_unref; |
2721 | 2721 | obj->layer->evas->engine.func->context_anti_alias_set(data, context, | |
2722 | obj->cur->anti_alias); | ||
2722 | async_unref = ENFN->image_map_draw(data, context, | 2723 | async_unref = ENFN->image_map_draw(data, context, |
2723 | surface, image, m, | 2724 | surface, image, m, |
2724 | smooth, level, | 2725 | smooth, level, |
diff --git a/src/lib/evas/canvas/evas_object_rectangle.c b/src/lib/evas/canvas/evas_object_rectangle.c index 3633bc001a..9454a3dcac 100644 --- a/src/lib/evas/canvas/evas_object_rectangle.c +++ b/src/lib/evas/canvas/evas_object_rectangle.c | |||
@@ -127,6 +127,8 @@ evas_object_rectangle_render(Evas_Object *eo_obj EINA_UNUSED, | |||
127 | obj->cur->cache.clip.g, | 127 | obj->cur->cache.clip.g, |
128 | obj->cur->cache.clip.b, | 128 | obj->cur->cache.clip.b, |
129 | obj->cur->cache.clip.a); | 129 | obj->cur->cache.clip.a); |
130 | obj->layer->evas->engine.func->context_anti_alias_set(output, context, | ||
131 | obj->cur->anti_alias); | ||
130 | obj->layer->evas->engine.func->context_multiplier_unset(output, | 132 | obj->layer->evas->engine.func->context_multiplier_unset(output, |
131 | context); | 133 | context); |
132 | obj->layer->evas->engine.func->context_render_op_set(output, context, | 134 | obj->layer->evas->engine.func->context_render_op_set(output, context, |