b3dShowRenderProfiling

Toggles render profiling output (shows detailed timing breakdown every 120 frames). Takes no parameters. Returns nothing.

3D Graphics

Parameters & Returns

Parameters

This function takes no parameters.

Returns

Void

Quick Summary

Toggles render profiling output (shows detailed timing breakdown every 120 frames). Takes no parameters. Returns nothing.

Technical Exegesis...

Toggles render profiling output (shows detailed timing breakdown every 120 frames). Takes no parameters. Returns nothing. Flips g_showRenderProfiling flag and prints status message.

This function toggles profiling.

Example

Example.bam
; Enable profiling at startup for continuous monitoring
b3dShowRenderProfiling()

; Hotkey toggle for on-demand profiling
If inpIsKeyHit(VKEY_P) Then
    b3dShowRenderProfiling()
EndIf