PxDefaultProfilerDataType#
Defined in include/extensions/PxDefaultProfiler.h
-
struct PxDefaultProfilerDataType#
The various profiler data types that describe what data follows in the stream.
Public Types
-
enum Enum#
Values:
-
enumerator eTHREAD_BLOCK#
A thread ID follows a thread tag. All data following a thread block are from this thread.
-
enumerator eNAME_REGISTRATION#
A key, size and character string follows a name registration tag. Event names are only written once per thread.
Ensure names are global or static so the character pointer is static and does not change. Pointers values are used as keys to look up names. It is especially important for cross thread zones so the zone names can be found across threads.
-
enumerator eZONE_START#
A PxProfilerCallback::zoneStart callback. A time tag, context and name key follows a zone start tag.
-
enumerator eZONE_END#
A PxProfilerCallback::zoneEnd callback. A time tag, context and name key follows a zone end tag.
-
enumerator eZONE_START_CROSS_THREAD#
A PxProfilerCallback::zoneStart callback with detached set to true indicating a cross thread zone.
-
enumerator eZONE_END_CROSS_THREAD#
A PxProfilerCallback::zoneEnd callback with detached set to true indicating a cross thread zone.
-
enumerator eVALUE_INT#
A PxProfilerCallback::recordData callback with an integer value.
-
enumerator eVALUE_FLOAT#
A PxProfilerCallback::recordData callback with a floating point value.
-
enumerator eFRAME#
A PxProfilerCallback::recordFrame callback. Frames are simple markers that are identifable in the profiling tools.
-
enumerator eTHREAD_BLOCK#
-
enum Enum#