[libpng16] Eliminated PNG_NO_INTEL_SSE_3BPP which was just for testing.

This commit is contained in:
Glenn Randers-Pehrson
2016-04-05 12:16:27 -05:00
parent 8f506d3257
commit f47e1d4995
3 changed files with 9 additions and 5 deletions

View File

@@ -32,12 +32,10 @@ png_init_filter_functions_sse2(png_structp pp, unsigned int bpp)
png_debug(1, "in png_init_filter_functions_sse2");
if (bpp == 3)
{
#ifndef PNG_NO_INTEL_SSE_3BPP
pp->read_filter[PNG_FILTER_VALUE_SUB-1] = png_read_filter_row_sub3_sse2;
pp->read_filter[PNG_FILTER_VALUE_AVG-1] = png_read_filter_row_avg3_sse2;
pp->read_filter[PNG_FILTER_VALUE_PAETH-1] =
png_read_filter_row_paeth3_sse2;
#endif
}
else if (bpp == 4)
{