From 67a3271f0de9ccc32d559b042b862528272047cc Mon Sep 17 00:00:00 2001 From: mtklein Date: Thu, 10 Jul 2014 06:03:46 -0700 Subject: Slim Skia down to just one murmur3 implementation. BUG=skia: Committed: https://skia.googlesource.com/skia/+/6ac0037b70410ff7d5ce5788bc89314223e1a587 R=reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/376183004 --- bench/FontCacheBench.cpp | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'bench/FontCacheBench.cpp') diff --git a/bench/FontCacheBench.cpp b/bench/FontCacheBench.cpp index 0e75c9cb17..697bde64f4 100644 --- a/bench/FontCacheBench.cpp +++ b/bench/FontCacheBench.cpp @@ -7,6 +7,7 @@ #include "Benchmark.h" #include "SkCanvas.h" +#include "SkChecksum.h" #include "SkFontHost.h" #include "SkPaint.h" #include "SkString.h" @@ -64,23 +65,12 @@ static uint32_t hasher0(uint32_t value) { return value ^ (value >> 8); } -static uint32_t hasher2(uint32_t h) { - h ^= h >> 16; - h *= 0x85ebca6b; - h ^= h >> 13; - h *= 0xc2b2ae35; - h ^= h >> 16; - - h ^= (h >> 8); - return h; -} - static const struct { const char* fName; HasherProc fHasher; } gRec[] = { { "hasher0", hasher0 }, - { "hasher2", hasher2 }, + { "hasher2", SkChecksum::Mix }, }; #define kMaxHashBits 12 -- cgit v1.2.3