Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/Utils/Profile.hpp')
-rw-r--r--src/slic3r/Utils/Profile.hpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/slic3r/Utils/Profile.hpp b/src/slic3r/Utils/Profile.hpp
new file mode 100644
index 000000000..5fb1e3116
--- /dev/null
+++ b/src/slic3r/Utils/Profile.hpp
@@ -0,0 +1,19 @@
+#ifndef slic3r_GUI_Profile_hpp_
+#define slic3r_GUI_Profile_hpp_
+
+// Profiling support using the Shiny intrusive profiler
+//#define SLIC3R_PROFILE_GUI
+#if defined(SLIC3R_PROFILE) && defined(SLIC3R_PROFILE_GUI)
+ #include <Shiny/Shiny.h>
+ #define SLIC3R_GUI_PROFILE_FUNC() PROFILE_FUNC()
+ #define SLIC3R_GUI_PROFILE_BLOCK(name) PROFILE_BLOCK(name)
+ #define SLIC3R_GUI_PROFILE_UPDATE() PROFILE_UPDATE()
+ #define SLIC3R_GUI_PROFILE_OUTPUT(x) PROFILE_OUTPUT(x)
+#else
+ #define SLIC3R_GUI_PROFILE_FUNC()
+ #define SLIC3R_GUI_PROFILE_BLOCK(name)
+ #define SLIC3R_GUI_PROFILE_UPDATE()
+ #define SLIC3R_GUI_PROFILE_OUTPUT(x)
+#endif
+
+#endif // slic3r_GUI_Profile_hpp_