De-spam SkOpts.cpp
authormtklein <mtklein@chromium.org>
Tue, 17 Nov 2015 01:28:55 +0000 (17:28 -0800)
committerCommit bot <commit-bot@chromium.org>
Tue, 17 Nov 2015 01:28:55 +0000 (17:28 -0800)
  - stop printing when we detect sse4.2 and avx2
  - that TODO is pretty well done

BUG=skia:

Review URL: https://codereview.chromium.org/1445343002

src/core/SkOpts.cpp

index ee80e4de3c46c8432c5eb5e0acdd1bc605dbf26f..1be8b40fd1dad5e6a275d1cb7e5e62588dd21d84 100644 (file)
@@ -83,11 +83,10 @@ namespace SkOpts {
     // Each Init_foo() is defined in src/opts/SkOpts_foo.cpp.
     void Init_ssse3();
     void Init_sse41();
-    void Init_sse42() { SkDEBUGCODE( SkDebugf("sse 4.2 detected\n"); ) }
+    void Init_sse42() {}
     void Init_avx();
-    void Init_avx2() { SkDEBUGCODE( SkDebugf("avx2 detected\n"); ) }
+    void Init_avx2() {}
     void Init_neon();
-    //TODO: _dsp2, _armv7, _armv8, _x86, _x86_64, _sse42, ... ?
 
     static void init() {
         // TODO: Chrome's not linking _sse* opts on iOS simulator builds.  Bug or feature?