Home
last modified time | relevance | path

Searched refs:gpuMicroSeconds (Results 1 - 2 of 2) sorted by relevance

/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp2678 int64_t gpuMicroSeconds = 0; in CopyPerfTimeStamp() local
2701 gpuMicroSeconds = static_cast<int64_t>(gpuNanoSeconds / NANOSECONDS_TO_MICROSECONDS); in CopyPerfTimeStamp()
2702 if (gpuMicroSeconds > UINT32_MAX) { in CopyPerfTimeStamp()
2703 gpuMicroSeconds = 0; in CopyPerfTimeStamp()
2705 fullGpuCounter_ += gpuMicroSeconds; in CopyPerfTimeStamp()
2720 perfData->UpdateData(name, "Backend_Gpu", gpuMicroSeconds); in CopyPerfTimeStamp()
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Drender_backend_vk.cpp2751 int64_t gpuMicroSeconds = 0;
2763 gpuMicroSeconds = static_cast<int64_t>((endStamp - startStamp) * timestampPeriod) / nanosToMicrosDivisor;
2765 if (gpuMicroSeconds > maxValidMicroSecondValue) {
2766 gpuMicroSeconds = 0;
2768 perfGpuTimerData_.fullGpuCounter += gpuMicroSeconds;
2780 perfData->UpdateData(name, "Backend_Gpu", gpuMicroSeconds);

Completed in 9 milliseconds