| Index: src/core/SkImageFilterCache.cpp
|
| diff --git a/src/core/SkImageFilterCache.cpp b/src/core/SkImageFilterCache.cpp
|
| index ba8a32c889b71c1a2dddc49537dd443d308fc37b..c7104def3728691d225f63958fd3153e0d07b044 100644
|
| --- a/src/core/SkImageFilterCache.cpp
|
| +++ b/src/core/SkImageFilterCache.cpp
|
| @@ -7,9 +7,9 @@
|
|
|
| #include "SkImageFilterCache.h"
|
|
|
| -#include "SkChecksum.h"
|
| #include "SkMutex.h"
|
| #include "SkOnce.h"
|
| +#include "SkOpts.h"
|
| #include "SkRefCnt.h"
|
| #include "SkSpecialImage.h"
|
| #include "SkTDynamicHash.h"
|
| @@ -47,7 +47,7 @@ public:
|
| return v.fKey;
|
| }
|
| static uint32_t Hash(const Key& key) {
|
| - return SkChecksum::Murmur3(reinterpret_cast<const uint32_t*>(&key), sizeof(Key));
|
| + return SkOpts::hash(reinterpret_cast<const uint32_t*>(&key), sizeof(Key));
|
| }
|
| SK_DECLARE_INTERNAL_LLIST_INTERFACE(Value);
|
| };
|
|
|