From 86c756929c67d0c6771d35a5c076d170c2fa4c47 Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 2 Jun 2017 19:58:33 -0700 Subject: rescaler_mips32: disable ImportRowShrink this function is failing the 'accum == 0' assert on skia bots for rescaling to 13x13 BUG=skia:6682 Change-Id: I9f9f3adf28cec63ad6e38ed3128f18825d5b70cc --- src/dsp/rescaler_mips32.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dsp/rescaler_mips32.c b/src/dsp/rescaler_mips32.c index e09ad5d1..6b14b532 100644 --- a/src/dsp/rescaler_mips32.c +++ b/src/dsp/rescaler_mips32.c @@ -279,7 +279,8 @@ extern void WebPRescalerDspInitMIPS32(void); WEBP_TSAN_IGNORE_FUNCTION void WebPRescalerDspInitMIPS32(void) { WebPRescalerImportRowExpand = ImportRowExpand; - WebPRescalerImportRowShrink = ImportRowShrink; + // WebPRescalerImportRowShrink = ImportRowShrink; + (void)ImportRowShrink; WebPRescalerExportRowExpand = ExportRowExpand; WebPRescalerExportRowShrink = ExportRowShrink; } -- cgit v1.2.1