Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1272)

Unified Diff: skia/ext/convolver.h

Issue 15742005: (Patch by Teodora Novkovic <teodora.petrovic@gmail.com>, originally reviewed at https://codereview… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « AUTHORS ('k') | skia/ext/convolver.cc » ('j') | skia/ext/convolver_SSE2.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/convolver.h
diff --git a/skia/ext/convolver.h b/skia/ext/convolver.h
index 4248bc6bf0fe471f41f91a74b0ed78425b2cf61a..a901dabe134cd92e4914abeba25dc3206d91e711 100644
--- a/skia/ext/convolver.h
+++ b/skia/ext/convolver.h
@@ -20,6 +20,10 @@
#define SIMD_PADDING 8 // 8 * int16
#endif
+#if defined(ARCH_CPU_MIPS_FAMILY) && defined(ARCH_CPU_MIPSEL) && \
Justin Novosad 2013/05/23 15:32:03 Can we simplify this expression? Isn't ARCH_CPU_MI
Teodora Novkovic 2013/05/24 16:02:20 Done.
+ defined(__mips_dsp) && (__mips_dsp_rev >= 2)
+#define SIMD_MIPS_DSPR2 1
+#endif
// avoid confusion with Mac OS X's math library (Carbon)
#if defined(__APPLE__)
#undef FloatToFixed
« no previous file with comments | « AUTHORS ('k') | skia/ext/convolver.cc » ('j') | skia/ext/convolver_SSE2.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698