summaryrefslogtreecommitdiff
path: root/pngpriv.h
diff options
context:
space:
mode:
authorMatt Sarett <msarett@google.com>2016-02-15 14:45:14 -0500
committerMatt Sarett <msarett@google.com>2016-02-15 14:45:14 -0500
commitf84f95788121dcf5946f721ff88d14ee64247a40 (patch)
treeb834a7064a4eb1e70beee8f9200c0eeb90dc6548 /pngpriv.h
parent9c946e22fcad10c2a44c0380c0909da6732097ce (diff)
downloadlibpng-f84f95788121dcf5946f721ff88d14ee64247a40.tar.gz
Use PNG_INTEL_SSE_OPT instead of PNG_INTEL_SSE2_OPT
Diffstat (limited to 'pngpriv.h')
-rw-r--r--pngpriv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/pngpriv.h b/pngpriv.h
index 9f4d6302d..18ff7f379 100644
--- a/pngpriv.h
+++ b/pngpriv.h
@@ -182,15 +182,15 @@
# endif
#endif /* PNG_ARM_NEON_OPT > 0 */
-#ifndef PNG_INTEL_SSE2_OPT
+#ifndef PNG_INTEL_SSE_OPT
# if defined(__SSE3__) || defined(__SSSE3__)
-# define PNG_INTEL_SSE2_OPT 2
+# define PNG_INTEL_SSE_OPT 2
# elif defined(__SSE2__)
-# define PNG_INTEL_SSE2_OPT 1
+# define PNG_INTEL_SSE_OPT 1
# endif
#endif
-#if PNG_INTEL_SSE2_OPT > 0
+#if PNG_INTEL_SSE_OPT > 0
# define PNG_FILTER_OPTIMIZATIONS png_init_filter_functions_sse2
#endif