disable map mesh support - engine code still doesnt handle != 4 points

so pointless exposing it as its broken inthe engine.



SVN revision: 59895
This commit is contained in:
Carsten Haitzler 2011-06-02 09:49:17 +00:00
parent 156fb16ab2
commit 7d08af1ed0
1 changed files with 2 additions and 2 deletions

View 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);