aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-01-08 12:54:54 -0500
committerDavid Robillard <d@drobilla.net>2023-01-08 12:54:54 -0500
commit1e8431373a494c27c74e34bfa7ab0247e3c29677 (patch)
tree8cb27dc3a25ab49e2a76a33995e2efeab9f73f8f /src
parenta3ccd8a4c5125bd12c017261ffdbc0de7759d62b (diff)
downloadpugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.tar.gz
pugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.tar.bz2
pugl-1e8431373a494c27c74e34bfa7ab0247e3c29677.zip
Add missing default hint
Diffstat (limited to 'src')
-rw-r--r--src/common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c
index 663cf28..9bb2d2e 100644
--- a/src/common.c
+++ b/src/common.c
@@ -92,6 +92,7 @@ static void
puglSetDefaultHints(PuglHints hints)
{
hints[PUGL_USE_COMPAT_PROFILE] = PUGL_TRUE;
+ hints[PUGL_USE_DEBUG_CONTEXT] = PUGL_FALSE;
hints[PUGL_CONTEXT_VERSION_MAJOR] = 2;
hints[PUGL_CONTEXT_VERSION_MINOR] = 0;
hints[PUGL_RED_BITS] = 8;