From 09b3ef8f39a3079450dcc3a3bf74db9c0af6ba8a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= <rafostar.github@gmail.com>
Date: Sun, 12 Jan 2025 12:58:24 +0100
Subject: [PATCH] clapper-app: Do not enforce GSK renderer on Windows

---
 src/bin/clapper-app/main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/bin/clapper-app/main.c b/src/bin/clapper-app/main.c
index 7acf4e10..63ca4165 100644
--- a/src/bin/clapper-app/main.c
+++ b/src/bin/clapper-app/main.c
@@ -39,7 +39,9 @@ main (gint argc, gchar **argv)
   guint resolution = 0;
 #endif
 
+#ifndef G_OS_WIN32
   g_setenv ("GSK_RENDERER", "gl", FALSE);
+#endif
 
   setlocale (LC_ALL, "");
   if (!(clapper_ldir = g_getenv ("CLAPPER_APP_OVERRIDE_LOCALEDIR")))