From e42129241681dde7adae7d20697e7b421682fbb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 27 Apr 2024 18:23:22 +0200 Subject: Adding upstream version 2.10.22. Signed-off-by: Daniel Baumann --- devel-docs/libgimp/html/libgimp-gimpdebug.html | 108 +++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 devel-docs/libgimp/html/libgimp-gimpdebug.html (limited to 'devel-docs/libgimp/html/libgimp-gimpdebug.html') diff --git a/devel-docs/libgimp/html/libgimp-gimpdebug.html b/devel-docs/libgimp/html/libgimp-gimpdebug.html new file mode 100644 index 0000000..49a38e3 --- /dev/null +++ b/devel-docs/libgimp/html/libgimp-gimpdebug.html @@ -0,0 +1,108 @@ + + + + +gimpdebug: GIMP Library Reference Manual + + + + + + + + + + + + + + + + +
+
+
+ + +
+

gimpdebug

+

gimpdebug — Debug utility functions

+
+
+

Functions

+
++++ + + + + + + + + + + +
+gboolean + +gimp_debug_timer_start () +
+gdouble + +gimp_debug_timer_end () +
+
+
+

Description

+

Miscellaneous debug utility functions. Not part of the stable +library interface.

+
+
+

Functions

+
+

gimp_debug_timer_start ()

+
gboolean
+gimp_debug_timer_start (void);
+

Starts measuring elapsed time.

+

This procedure starts a timer, measuring the elapsed time since the +call. Each call to this procedure should be matched by a call to +gimp_debug_timer_end(), which returns the elapsed time. +If there is already an active timer, it is not affected by the call, +however, a matching gimp_debug_timer_end() call is still required.

+

This is a debug utility procedure. It is subject to change at any +point, and should not be used in production.

+
+

Returns

+

TRUE on success.

+
+
+
+
+

gimp_debug_timer_end ()

+
gdouble
+gimp_debug_timer_end (void);
+

Finishes measuring elapsed time.

+

This procedure stops the timer started by a previous +gimp_debug_timer_start() call, and prints and returns the elapsed +time. +If there was already an active timer at the time of corresponding +call to gimp_debug_timer_start(), a dummy value is returned.

+

This is a debug utility procedure. It is subject to change at any +point, and should not be used in production.

+
+

Returns

+

The elapsed time, in seconds.

+
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.3