Lines Matching refs:total
177 uint32_t total = 0;
178 log.appendFormat("Current memory usage / total memory usage (bytes):\n");
194 log.appendFormat(" Layers total %8d (numLayers = %zu)\n",
196 total += memused;
215 log.appendFormat(" FontRenderer %d total %8d / %8d\n", i, sizeA8 + sizeRGBA,
222 total += textureCache.getSize();
223 total += renderBufferCache.getSize();
224 total += gradientCache.getSize();
225 total += pathCache.getSize();
226 total += tessellationCache.getSize();
227 total += dropShadowCache.getSize();
228 total += patchCache.getSize();
230 total += fontRenderer->getFontRendererSize(i, GL_ALPHA);
231 total += fontRenderer->getFontRendererSize(i, GL_RGBA);
234 log.appendFormat("Total memory usage:\n");
235 log.appendFormat(" %d bytes, %.2f MB\n", total, total / 1024.0f / 1024.0f);