disable map mesh support - engine code still doesnt handle != 4 points
authorCarsten Haitzler <raster@rasterman.com>
Thu, 2 Jun 2011 09:49:17 +0000 (09:49 +0000)
committerCarsten Haitzler <raster@rasterman.com>
Thu, 2 Jun 2011 09:49:17 +0000 (09:49 +0000)
so pointless exposing it as its broken inthe engine.

SVN revision: 59895

legacy/evas/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);