PxDefaultProfiler#

Defined in include/extensions/PxDefaultProfiler.h

class PxDefaultProfiler : public PxProfilerCallback#

Default implementation of PxProfilerCallback to record profiling events.

The profiling events are stored in a memory buffer which gets flushed to a user provided stream when the buffer is full, or when flush or release is called.

See also

PxDefaultProfilerCreate()

Public Functions

virtual void release() = 0#

Deletes the profiler.

Do not keep a reference to the deleted instance.

See also

PxDefaultProfilerCreate()

virtual void flush() = 0#

Write all of the collected profiling data to the output stream.

This call is not thread safe, so it should only be called during a sync point or when all threads have yielded. Calling this regularly, at appropriate times will prevent the buffers from filling up and forcing a write to the stream at unexpected times because writes will affect performance.

virtual void *zoneStart(
const char *eventName,
bool detached,
uint64_t contextId,
) = 0#

Mark the beginning of a nested profile block.

Parameters:
  • eventName[in] Event name. Must be a persistent const char* that is the same pointer passed to zoneEnd such that the pointer can be used to pair the calls.

  • detached[in] True for cross thread events

  • contextId[in] the context id of this zone. Zones with the same id belong to the same group. 0 is used for no specific group.

Returns:

Returns implementation-specific profiler data for this event

virtual void zoneEnd(
void *profilerData,
const char *eventName,
bool detached,
uint64_t contextId,
) = 0#

Mark the end of a nested profile block.

Note

eventName plus contextId can be used to uniquely match up start and end of a zone.

Parameters:
  • profilerData[in] The data returned by the corresponding zoneStart call (or NULL if not available)

  • eventName[in] Event name. Must be a persistent const char* that is the same pointer passed to zoneStart such that the pointer can be used to pair the calls.

  • detached[in] True for cross thread events. Should match the value passed to zoneStart.

  • contextId[in] The context of this zone. Should match the value passed to zoneStart.

inline virtual void recordData(
int32_t value,
const char *valueName,
uint64_t contextId,
)#

Record integer data to be displayed in the profiler.

Parameters:
  • value[in] The integer data point to be recorded.

  • valueName[in] The name of the data being recorded. Must be a persistent const char *

  • contextId[in] The context of this data.

inline virtual void recordData(
float value,
const char *valueName,
uint64_t contextId,
)#

Record float data to be displayed in the profiler.

Parameters:
  • value[in] The floating point data to be recorded.

  • valueName[in] The name of the data being recorded. Must be a persistent const char *

  • contextId[in] The context of this data.

inline virtual void recordFrame(const char *name, uint64_t contextId)#

Record a frame marker to be displayed in the profiler.

Markers that have identical names will be displayed in the profiler along with the time between each of the markers. A frame counter will display the frame marker count.

Parameters:
  • name[in] The name of the frame. Must be a persistent const char *

  • contextId[in] The context of the frame.