commit | 8317a1832f55e175531ee7ae7ccd12a3a15e3c75 | [log] [tgz] |
---|---|---|
author | mtklein <mtklein@chromium.org> | Thu Jul 30 07:30:16 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Thu Jul 30 07:30:16 2015 -0700 |
tree | fbc782b3198b75c3aac5541d20af5f3d91d07e87 | |
parent | dbf9f014a8a1f2f9c0ecfccb12d7dd5f4cfac240 [diff] [blame] |
Lay groundwork for SkOpts. This doesn't really do anything yet. It's just the CPU detection code, skeleton new .cpp files, and a few little .gyp tweaks. BUG=skia:4117 Committed: https://skia.googlesource.com/skia/+/ce2c5055cee5d5d3c9fc84c1b3eeed4b4d84a827 Review URL: https://codereview.chromium.org/1255193002
diff --git a/src/opts/SkOpts_ssse3.cpp b/src/opts/SkOpts_ssse3.cpp new file mode 100644 index 0000000..de32966 --- /dev/null +++ b/src/opts/SkOpts_ssse3.cpp
@@ -0,0 +1,14 @@ +/* + * Copyright 2015 Google Inc. + * + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. + */ + +#include "SkOpts.h" + +namespace SkOpts { + void Init_ssse3() { + + } +}