Fix filter in snapshot test

Snaphot objects are opaque. So a color with alpha < 255 is not
valid. I kinda wonder:
- if snapshot objects should really be opaque
- should this have been properly handled by the image object?
This commit is contained in:
Jean-Philippe Andre 2015-10-12 16:56:16 +09:00
parent 9cf0688f99
commit 91ca743b85
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ static void _setup(void)
}
const char *filter =
"blur { 5, dst = a, color = '#ff08' }"
"blur { 5, dst = a, color = '#ff0' }"
;
o = eo_add(EVAS_IMAGE_CLASS, evas);