This wiki is out of date, use the continuation of this wiki instead

Fenix profiler

From FenixWiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 20:06, 5 April 2008 (edit)
Sandman (Talk | contribs)
m
← Previous diff
Current revision (20:07, 5 April 2008) (edit) (undo)
Sandman (Talk | contribs)
m
 
Line 8: Line 8:
Shortcuts: Shortcuts:
{| {|
-| ALT-P || - Show/hide the [[Fenix profiler]]+| ALT-P || - Show/hide the Fenix profiler
|- |-
| ALT-R || - Resets the profile history of the Fenix Profiler. | ALT-R || - Resets the profile history of the Fenix Profiler.

Current revision


The Fenix profiler is a handy debugging tool. It shows how much power is needed for certain systems of Fenix, most particularly the drawing and the interpreting.

To use the profiler, run in debug mode by compiling your program in FXC.exe with the argument "-g", and then show it in-program with ALT+P.

Shortcuts:

ALT-P - Show/hide the Fenix profiler
ALT-R - Resets the profile history of the Fenix Profiler.
ALT-S - Activate/Deactivate the Fenix Profiler.

[edit] Example

Process Main()
Begin

    // To make sure the profiler is updated every frame
    restore_type = COMPLETE_RESTORE;

    A();

    Loop
        frame;
    End

End

Process A()
Begin
    Loop
        frame;
    End
End

Used in example: restore_type, process, frame

Image:Profiler.png
A typical profiler window of a program doing nothing


Debugging
DebuggingFenix consoleFenix profiler
Personal tools