Skip to content

Commit

Permalink
app_server: fix x86_64 build.
Browse files Browse the repository at this point in the history
  • Loading branch information
korli committed Nov 14, 2015
1 parent 81768f4 commit ac7f52f
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions src/servers/app/drawing/AlphaMaskCache.cpp
Expand Up @@ -173,16 +173,12 @@ AlphaMaskCache::_FindUncachedPreviousMasks(AlphaMask* mask, bool reference)
void
AlphaMaskCache::_PrintAndResetStatistics()
{
debug_printf("AlphaMaskCache statistics: size=%4ld bytes=%4ld lower=%4ld "
"total=%4ld too_large=%4ld replaced=%4ld hit=%4ld miss=%4ld\n",
fShapeMasks.size(),
fCurrentCacheBytes,
fLowerMaskReferencedCount,
fShapeMasks.size() + fLowerMaskReferencedCount,
fTooLargeMaskCount,
fMasksReplacedCount,
fHitCount,
fMissCount);
debug_printf("AlphaMaskCache statistics: size=%" B_PRIuSIZE " bytes=%"
B_PRIuSIZE " lower=%4" B_PRIu32 " total=%" B_PRIuSIZE " too_large=%4"
B_PRIu32 " replaced=%4" B_PRIu32 " hit=%4" B_PRIu32 " miss=%4" B_PRIu32
"\n", fShapeMasks.size(), fCurrentCacheBytes, fLowerMaskReferencedCount,
fShapeMasks.size() + fLowerMaskReferencedCount, fTooLargeMaskCount,
fMasksReplacedCount, fHitCount, fMissCount);
fTooLargeMaskCount = 0;
fMasksReplacedCount = 0;
fHitCount = 0;
Expand Down

0 comments on commit ac7f52f

Please sign in to comment.