| Index: src/gpu/GrTHashCache.h
|
| diff --git a/src/gpu/GrTHashCache.h b/src/gpu/GrTHashCache.h
|
| index 01b08e7a0cc3a91793bff06cc89d7de18cb5707b..ead774dd321ea2fc887fefef9b25be988f1e3a3f 100644
|
| --- a/src/gpu/GrTHashCache.h
|
| +++ b/src/gpu/GrTHashCache.h
|
| @@ -53,7 +53,7 @@ public:
|
| */
|
| int slowFindIndex(T* elem) const { return fSorted.find(elem); }
|
|
|
| -#if GR_DEBUG
|
| +#if SK_DEBUG
|
| void validate() const;
|
| bool contains(T*) const;
|
| #endif
|
| @@ -225,7 +225,7 @@ void GrTHashTable<T, Key, kHashBits>::unrefAll() {
|
| Gr_bzero(fHash, sizeof(fHash));
|
| }
|
|
|
| -#if GR_DEBUG
|
| +#if SK_DEBUG
|
| template <typename T, typename Key, size_t kHashBits>
|
| void GrTHashTable<T, Key, kHashBits>::validate() const {
|
| int count = fSorted.count();
|
|
|