* @li evas_vg_node_stack_below()
* @li evas_vg_node_lower()
* @li evas_vg_node_raise()
- * @li evas_vg_node_mask_set()
- * @li evas_vg_node_mask_get()
* @{
* @objective Positive test case checks if functions set/get the origin position of node object
* set/get the main color of the given Efl_Vg object
evas_vg_node_raise(rect_above);
- Efl_VG *rect_red = evas_vg_shape_add(root);
- evas_vg_node_color_set(rect_red, 255, 0, 0, 255);
- evas_vg_shape_append_rect(rect_red, 50, 50, 100, 100, 0, 0);
-
- Efl_VG *rect_empty = evas_vg_shape_add(root);
- evas_vg_node_color_set(rect_empty, 255, 255, 255, 0);
- evas_vg_shape_append_rect(rect_empty, 70, 60, 20, 20, 0, 0);
-
- evas_vg_node_mask_set(rect_red, rect_empty);
- if (evas_vg_node_mask_get(rect_red) != rect_empty)
- {
- ck_abort_msg("[TEST_FAIL]:: %s[%d] : Test has failed", __FILE__, __LINE__);
- }
-
first_object = evas_vg_shape_add(NULL);
evas_vg_shape_append_rect(first_object, 50, 50, 100, 100, 0, 0);
evas_vg_node_color_set(first_object, 0, 0, 0, 255);