2016-03-17 13:48:19 +00:00
|
|
|
#include "gskdebugprivate.h"
|
2020-06-28 03:09:55 +00:00
|
|
|
#include "gdk/gdk-private.h"
|
2016-03-17 13:48:19 +00:00
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
2020-06-28 03:09:55 +00:00
|
|
|
static const GdkDebugKey gsk_debug_keys[] = {
|
|
|
|
{ "renderer", GSK_DEBUG_RENDERER, "General renderer information" },
|
|
|
|
{ "cairo", GSK_DEBUG_CAIRO, "Cairo renderer information" },
|
|
|
|
{ "opengl", GSK_DEBUG_OPENGL, "OpenGL renderer information" },
|
|
|
|
{ "vulkan", GSK_DEBUG_VULKAN, "Vulkan renderer information" },
|
|
|
|
{ "shaders", GSK_DEBUG_SHADERS, "Information about shaders" },
|
|
|
|
{ "surface", GSK_DEBUG_SURFACE, "Information about surfaces" },
|
|
|
|
{ "fallback", GSK_DEBUG_FALLBACK, "Information about fallbacks" },
|
|
|
|
{ "glyphcache", GSK_DEBUG_GLYPH_CACHE, "Information about glyph caching" },
|
|
|
|
{ "diff", GSK_DEBUG_DIFF, "Show differences" },
|
|
|
|
{ "geometry", GSK_DEBUG_GEOMETRY, "Show borders" },
|
|
|
|
{ "full-redraw", GSK_DEBUG_FULL_REDRAW, "Force full redraws" },
|
|
|
|
{ "sync", GSK_DEBUG_SYNC, "Sync after each frame" },
|
|
|
|
{ "vulkan-staging-image", GSK_DEBUG_VULKAN_STAGING_IMAGE, "Use a staging image for Vulkan texture upload" },
|
|
|
|
{ "vulkan-staging-buffer", GSK_DEBUG_VULKAN_STAGING_BUFFER, "Use a staging buffer for Vulkan texture upload" }
|
2016-03-17 13:48:19 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2018-01-14 14:52:52 +00:00
|
|
|
static guint gsk_debug_flags;
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_debug_flags (void)
|
2016-03-17 13:48:19 +00:00
|
|
|
{
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
static volatile gsize gsk_debug_flags__set;
|
|
|
|
|
|
|
|
if (g_once_init_enter (&gsk_debug_flags__set))
|
|
|
|
{
|
2020-06-28 03:09:55 +00:00
|
|
|
gsk_debug_flags = gdk_parse_debug_var ("GSK_DEBUG",
|
|
|
|
gsk_debug_keys,
|
|
|
|
G_N_ELEMENTS (gsk_debug_keys));
|
2016-03-17 13:48:19 +00:00
|
|
|
|
|
|
|
g_once_init_leave (&gsk_debug_flags__set, TRUE);
|
|
|
|
}
|
2018-01-14 14:52:52 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gsk_check_debug_flags (GskDebugFlags flags)
|
|
|
|
{
|
|
|
|
init_debug_flags ();
|
2016-03-17 13:48:19 +00:00
|
|
|
return (gsk_debug_flags & flags) != 0;
|
2018-01-14 14:52:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GskDebugFlags
|
|
|
|
gsk_get_debug_flags (void)
|
|
|
|
{
|
|
|
|
init_debug_flags ();
|
|
|
|
return gsk_debug_flags;
|
2016-03-17 13:48:19 +00:00
|
|
|
}
|
2018-01-14 21:06:25 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gsk_set_debug_flags (GskDebugFlags flags)
|
|
|
|
{
|
|
|
|
init_debug_flags ();
|
|
|
|
gsk_debug_flags = flags;
|
|
|
|
}
|