summaryrefslogtreecommitdiff
path: root/vcl/source/app/watchdog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/app/watchdog.cxx')
-rw-r--r--vcl/source/app/watchdog.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/vcl/source/app/watchdog.cxx b/vcl/source/app/watchdog.cxx
index 795501ec45ac..bd8b28db89e6 100644
--- a/vcl/source/app/watchdog.cxx
+++ b/vcl/source/app/watchdog.cxx
@@ -17,6 +17,7 @@
#include <sal/log.hxx>
#include <comphelper/debuggerinfo.hxx>
#include <opengl/zone.hxx>
+#include <skia/zone.hxx>
#include <stdlib.h>
@@ -107,12 +108,18 @@ void WatchdogThread::execute()
#if HAVE_FEATURE_OPENGL
WatchdogHelper<OpenGLZone>::setLastEnters();
#endif
+#if HAVE_FEATURE_SKIA
+ WatchdogHelper<SkiaZone>::setLastEnters();
+#endif
gpWatchdogExit->wait(&aQuarterSecond);
#if HAVE_FEATURE_OPENGL
WatchdogHelper<OpenGLZone>::check();
#endif
+#if HAVE_FEATURE_SKIA
+ WatchdogHelper<SkiaZone>::check();
+#endif
} while (!gpWatchdogExit->check());
}