Preformance of Gdnative plugin not showing in profiler

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By supper_raptor

I have made a gdnative plugin for my bot but its preformance is not show in the profiler.
The profiler is not including gdnative plugins.

:bust_in_silhouette: Reply From: Zylann

The profiler shows GDScript functions automatically because that’s what the GDScript module does.

In C++ NativeScripts (assuming that’s what you use), this kind of thing is not automatic, and I believe Godot doesn’t do that automatically on registered functions either.

You can, however, use the GodotProfiling helper: https://github.com/GodotNativeTools/godot-cpp/blob/master/include/core/GodotProfiling.hpp
And place GODOT_PROFILING_FUNCTION at the beginning of your function.

(which can be improved Compute profiling signatures at compile-time · Issue #378 · godotengine/godot-cpp · GitHub )