Package org.web3d.browser
Interface ProfilingInfo
- All Known Implementing Classes:
AbstractProfilingInfo
,OGLProfilingInfo
public interface ProfilingInfo
Defines the requirements for accessing profiling data.
- Version:
- $Revision: 1.1 $
- Author:
- Rex Melton
-
Method Summary
Modifier and TypeMethodDescriptionlong
Return the time spent in the cull stage in nanosecondslong
Return the time spent in the draw stage in nanosecondslong
Return the total time to render the scene in nanosecondslong
Return the time spent in the sort stage in nanoseconds
-
Method Details
-
getSceneRenderTime
long getSceneRenderTime()Return the total time to render the scene in nanoseconds- Returns:
- the total time to render the scene in nanoseconds
-
getSceneCullTime
long getSceneCullTime()Return the time spent in the cull stage in nanoseconds- Returns:
- the time spent in the cull stage in nanoseconds
-
getSceneSortTime
long getSceneSortTime()Return the time spent in the sort stage in nanoseconds- Returns:
- the time spent in the sort stage in nanoseconds
-
getSceneDrawTime
long getSceneDrawTime()Return the time spent in the draw stage in nanoseconds- Returns:
- the time spent in the draw stage in nanoseconds
-