EXA: Clean up debug messages
This commit is contained in:
parent
fcb5949928
commit
13fd225630
|
@ -260,11 +260,9 @@ exaGlyphCacheHashLookup(ExaGlyphCachePtr cache,
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
if (memcmp(pGlyph->sha1, cache->glyphs[entryPos].sha1, sizeof(pGlyph->sha1)) == 0){
|
if (memcmp(pGlyph->sha1, cache->glyphs[entryPos].sha1, sizeof(pGlyph->sha1)) == 0){
|
||||||
DBG_GLYPH_CACHE((" found entry at %d\n", slot));
|
|
||||||
return entryPos;
|
return entryPos;
|
||||||
}
|
}
|
||||||
|
|
||||||
DBG_GLYPH_CACHE((" lookup linear probe bumpalong\n"));
|
|
||||||
slot--;
|
slot--;
|
||||||
if (slot < 0)
|
if (slot < 0)
|
||||||
slot = cache->hashSize - 1;
|
slot = cache->hashSize - 1;
|
||||||
|
@ -284,7 +282,6 @@ exaGlyphCacheHashInsert(ExaGlyphCachePtr cache,
|
||||||
|
|
||||||
while (TRUE) { /* hash table can never be full */
|
while (TRUE) { /* hash table can never be full */
|
||||||
if (cache->hashEntries[slot] == -1) {
|
if (cache->hashEntries[slot] == -1) {
|
||||||
DBG_GLYPH_CACHE((" inserting entry at %d\n", slot));
|
|
||||||
cache->hashEntries[slot] = pos;
|
cache->hashEntries[slot] = pos;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
#define DEBUG_MIGRATE 0
|
#define DEBUG_MIGRATE 0
|
||||||
#define DEBUG_PIXMAP 0
|
#define DEBUG_PIXMAP 0
|
||||||
#define DEBUG_OFFSCREEN 0
|
#define DEBUG_OFFSCREEN 0
|
||||||
#define DEBUG_GLYPH_CACHE 1
|
#define DEBUG_GLYPH_CACHE 0
|
||||||
|
|
||||||
#if DEBUG_TRACE_FALL
|
#if DEBUG_TRACE_FALL
|
||||||
#define EXA_FALLBACK(x) \
|
#define EXA_FALLBACK(x) \
|
||||||
|
|
Loading…
Reference in New Issue