remove unused code.

SVN revision: 56177
This commit is contained in:
Carsten Haitzler 2011-01-16 06:22:45 +00:00
parent 6411ac9cb2
commit 4da0e7dbb6
1 changed files with 1 additions and 15 deletions

View File

@ -161,7 +161,7 @@ evas_common_convert_init(void)
}
EAPI Gfx_Func_Convert
evas_common_convert_func_get(DATA8 *dest, int w, int h, int depth, DATA32 rmask, DATA32 gmask, DATA32 bmask, Convert_Pal_Mode pal_mode, int rotation)
evas_common_convert_func_get(DATA8 *dest, int w, int h __UNUSED__, int depth, DATA32 rmask, DATA32 gmask, DATA32 bmask, Convert_Pal_Mode pal_mode, int rotation)
{
if ((rmask == 0) && (gmask == 0) && (bmask == 0))
{
@ -208,12 +208,6 @@ evas_common_convert_func_get(DATA8 *dest, int w, int h, int depth, DATA32 rmask,
return evas_common_convert_rgba_to_8bpp_pal_gray64;
#endif
}
if (depth == 1)
{
}
if (depth == 4)
{
}
}
else
{
@ -632,15 +626,7 @@ evas_common_convert_func_get(DATA8 *dest, int w, int h, int depth, DATA32 rmask,
return evas_common_convert_rgba_to_8bpp_rgb_111_dith;
#endif
}
if (depth == 1)
{
}
if (depth == 4)
{
}
}
/* no optimised converter for this... no generic one either. NULL */
return NULL;
h = 0;
pal_mode = 0;
}