disable map mesh support - engine code still doesnt handle != 4 points
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 2 Jun 2011 09:49:17 +0000 (09:49 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 2 Jun 2011 09:49:17 +0000 (09:49 +0000)
so pointless exposing it as its broken inthe engine.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@59895 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_map.c

index 3016ffb..35146d3 100644 (file)
@@ -439,9 +439,9 @@ evas_object_map_get(const Evas_Object *obj)
 EAPI Evas_Map *
 evas_map_new(int count)
 {
-   if (count < 4)
+   if (count != 4)
      {
-        ERR("num (%i) < 4 is unsupported!", count);
+        ERR("map point count (%i) != 4 is unsupported!", count);
         return NULL;
      }
    return _evas_map_new(count);