• Home
  • Raw
  • Download

Lines Matching refs:profiler

30 	extern Profiler profiler;
457 profiler.reset(); in page()
466 html += "<p>FPS: " + ftoa(profiler.FPS) + "</p>\n"; in profile()
467 html += "<p>Frame: " + itoa(profiler.framesTotal) + "</p>\n"; in profile()
470 int texTime = (int)(1000 * profiler.cycles[PERF_TEX] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
471 int shaderTime = (int)(1000 * profiler.cycles[PERF_SHADER] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
472 int pipeTime = (int)(1000 * profiler.cycles[PERF_PIPE] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
473 int ropTime = (int)(1000 * profiler.cycles[PERF_ROP] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
474 int interpTime = (int)(1000 * profiler.cycles[PERF_INTERP] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
487 …double averageRopOperations = profiler.ropOperationsTotal / std::max(profiler.framesTotal, 1) / 1.… in profile()
488 …double averageCompressedTex = profiler.compressedTexTotal / std::max(profiler.framesTotal, 1) / 1.… in profile()
489 …double averageTexOperations = profiler.texOperationsTotal / std::max(profiler.framesTotal, 1) / 1.… in profile()
491 …html += "<p>Raster operations (million): " + ftoa(profiler.ropOperationsFrame / 1.0e6f) + " (curre… in profile()
492 …html += "<p>Texture operations (million): " + ftoa(profiler.texOperationsFrame / 1.0e6f) + " (curr… in profile()
493 …html += "<p>Compressed texture operations (million): " + ftoa(profiler.compressedTexFrame / 1.0e6f… in profile()
506 profiler.cycles[i] = 0; in profile()