Home
last modified time | relevance | path

Searched refs:PERF_PIXEL (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/src/Main/
DConfig.hpp34 PERF_PIXEL, enumerator
DSwiftConfig.cpp472 int texTime = (int)(1000 * profiler.cycles[PERF_TEX] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
473 int shaderTime = (int)(1000 * profiler.cycles[PERF_SHADER] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
474 int pipeTime = (int)(1000 * profiler.cycles[PERF_PIPE] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
475 int ropTime = (int)(1000 * profiler.cycles[PERF_ROP] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
476 int interpTime = (int)(1000 * profiler.cycles[PERF_INTERP] / profiler.cycles[PERF_PIXEL] + 0.5); in profile()
/external/swiftshader/src/Renderer/
DQuadRasterizer.cpp82 cycles[PERF_PIXEL] = Ticks() - pixelTime; in generate()