Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: src/gpu/GrMurmur3HashKey.h

Issue 1233933002: Get rid of GrMurmur3Hash (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tidy Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/effects/GrTextureStripAtlas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrMurmur3HashKey.h
diff --git a/src/gpu/GrMurmur3HashKey.h b/src/gpu/GrMurmur3HashKey.h
deleted file mode 100644
index be673628eba753cab256b87be9bf1fa5aa41c3c3..0000000000000000000000000000000000000000
--- a/src/gpu/GrMurmur3HashKey.h
+++ /dev/null
@@ -1,73 +0,0 @@
-
-/*
- * Copyright 2014 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-
-#ifndef GrMurmur3HashKey_DEFINED
-#define GrMurmur3HashKey_DEFINED
-
-#include "SkChecksum.h"
-#include "GrTypes.h"
-
-/**
- * GrMurmur3HashKey is a hash key class that can take a data chunk of any predetermined
- * length. It uses the Murmur3 hash function. It is intended to be used with
- * SkTDynamicHash.
- */
-template<size_t KEY_SIZE_IN_BYTES>
-class GrMurmur3HashKey {
-public:
- GrMurmur3HashKey() {
- this->reset();
- }
-
- void reset() {
- fHash = 0;
-#ifdef SK_DEBUG
- fIsValid = false;
-#endif
- }
-
- void setKeyData(const uint32_t* data) {
- SK_COMPILE_ASSERT(KEY_SIZE_IN_BYTES % 4 == 0, key_size_mismatch);
- memcpy(fData, data, KEY_SIZE_IN_BYTES);
-
- fHash = SkChecksum::Murmur3(fData, KEY_SIZE_IN_BYTES);
-#ifdef SK_DEBUG
- fIsValid = true;
-#endif
- }
-
- bool operator==(const GrMurmur3HashKey& other) const {
- if (fHash != other.fHash) {
- return false;
- }
-
- return !memcmp(fData, other.fData, KEY_SIZE_IN_BYTES);
- }
-
- uint32_t getHash() const {
- SkASSERT(fIsValid);
- return fHash;
- }
-
- const uint8_t* getData() const {
- SkASSERT(fIsValid);
- return reinterpret_cast<const uint8_t*>(fData);
- }
-
-private:
- uint32_t fHash;
- uint32_t fData[KEY_SIZE_IN_BYTES / sizeof(uint32_t)]; // Buffer for key storage.
-
-#ifdef SK_DEBUG
-public:
- bool fIsValid;
-#endif
-};
-
-#endif
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/effects/GrTextureStripAtlas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698