Evas: Fix clang warning (actually use function)
authorJean-Philippe Andre <jp.andre@samsung.com>
Tue, 21 Apr 2015 11:14:23 +0000 (20:14 +0900)
committerJean-Philippe Andre <jp.andre@samsung.com>
Tue, 21 Apr 2015 11:16:21 +0000 (20:16 +0900)
Those helper functions are barely ever used...

src/lib/evas/common/evas_convert_colorspace.c

index c12952a..77d1cb1 100644 (file)
@@ -77,6 +77,8 @@ evas_common_convert_argb8888_to(void *data, int w, int h, int stride, Eina_Bool
      {
        case EVAS_COLORSPACE_RGB565_A5P:
          return evas_common_convert_argb8888_to_rgb565_a5p(data, w, h, stride, has_alpha);
+       case EVAS_COLORSPACE_GRY8:
+         return evas_common_convert_argb8888_to_a8(data, w, h, stride, has_alpha);
        default:
          break;
      }