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

Side by Side Diff: src/gpu/effects/GrTextureStripAtlas.h

Issue 2208903002: Use sse4.2 CRC32 instructions to hash when available. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 years, 4 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 unified diff | Download patch
« no previous file with comments | « src/gpu/batches/GrAADistanceFieldPathRenderer.h ('k') | src/gpu/text/GrAtlasTextBlob.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrTextureStripAtlas_DEFINED 8 #ifndef GrTextureStripAtlas_DEFINED
9 #define GrTextureStripAtlas_DEFINED 9 #define GrTextureStripAtlas_DEFINED
10 10
11 #include "SkBitmap.h" 11 #include "SkBitmap.h"
12 #include "SkChecksum.h" 12 #include "SkOpts.h"
13 #include "SkGr.h" 13 #include "SkGr.h"
14 #include "SkTDArray.h" 14 #include "SkTDArray.h"
15 #include "SkTDynamicHash.h" 15 #include "SkTDynamicHash.h"
16 #include "SkTypes.h" 16 #include "SkTypes.h"
17 17
18 /** 18 /**
19 * Maintains a single large texture whose rows store many textures of a small fi xed height, 19 * Maintains a single large texture whose rows store many textures of a small fi xed height,
20 * stored in rows across the x-axis such that we can safely wrap/repeat them hor izontally. 20 * stored in rows across the x-axis such that we can safely wrap/repeat them hor izontally.
21 */ 21 */
22 class GrTextureStripAtlas { 22 class GrTextureStripAtlas {
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 * Clean up callback registered with GrContext. Allows this class to 135 * Clean up callback registered with GrContext. Allows this class to
136 * free up any allocated AtlasEntry and GrTextureStripAtlas objects 136 * free up any allocated AtlasEntry and GrTextureStripAtlas objects
137 */ 137 */
138 static void CleanUp(const GrContext* context, void* info); 138 static void CleanUp(const GrContext* context, void* info);
139 139
140 // Hash table entry for atlases 140 // Hash table entry for atlases
141 class AtlasEntry : public ::SkNoncopyable { 141 class AtlasEntry : public ::SkNoncopyable {
142 public: 142 public:
143 // for SkTDynamicHash 143 // for SkTDynamicHash
144 static const Desc& GetKey(const AtlasEntry& entry) { return entry.fDesc; } 144 static const Desc& GetKey(const AtlasEntry& entry) { return entry.fDesc; }
145 static uint32_t Hash(const Desc& desc) { return SkChecksum::Murmur3(&des c, sizeof(Desc)); } 145 static uint32_t Hash(const Desc& desc) { return SkOpts::hash(&desc, size of(Desc)); }
146 146
147 // AtlasEntry proper 147 // AtlasEntry proper
148 AtlasEntry() : fAtlas(nullptr) {} 148 AtlasEntry() : fAtlas(nullptr) {}
149 ~AtlasEntry() { delete fAtlas; } 149 ~AtlasEntry() { delete fAtlas; }
150 Desc fDesc; 150 Desc fDesc;
151 GrTextureStripAtlas* fAtlas; 151 GrTextureStripAtlas* fAtlas;
152 }; 152 };
153 153
154 class Hash; 154 class Hash;
155 static Hash* gAtlasCache; 155 static Hash* gAtlasCache;
(...skipping 24 matching lines...) Expand all
180 // Head and tail for linked list of least-recently-used rows (front = least recently used). 180 // Head and tail for linked list of least-recently-used rows (front = least recently used).
181 // Note that when a texture is locked, it gets removed from this list until it is unlocked. 181 // Note that when a texture is locked, it gets removed from this list until it is unlocked.
182 AtlasRow* fLRUFront; 182 AtlasRow* fLRUFront;
183 AtlasRow* fLRUBack; 183 AtlasRow* fLRUBack;
184 184
185 // A list of pointers to AtlasRows that currently contain cached images, sor ted by key 185 // A list of pointers to AtlasRows that currently contain cached images, sor ted by key
186 SkTDArray<AtlasRow*> fKeyTable; 186 SkTDArray<AtlasRow*> fKeyTable;
187 }; 187 };
188 188
189 #endif 189 #endif
OLDNEW
« no previous file with comments | « src/gpu/batches/GrAADistanceFieldPathRenderer.h ('k') | src/gpu/text/GrAtlasTextBlob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698