From dd6a9c09695161814d53fc2402178eaab348ca85 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Sep 2019 10:30:31 +0200 Subject: Add support for using a debug OpenGL context --- pugl/detail/x11_gl.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'pugl/detail/x11_gl.c') diff --git a/pugl/detail/x11_gl.c b/pugl/detail/x11_gl.c index ea93de2..f5dbe2c 100644 --- a/pugl/detail/x11_gl.c +++ b/pugl/detail/x11_gl.c @@ -119,6 +119,9 @@ puglX11GlCreate(PuglView* view) const int ctx_attrs[] = { GLX_CONTEXT_MAJOR_VERSION_ARB, view->hints[PUGL_CONTEXT_VERSION_MAJOR], GLX_CONTEXT_MINOR_VERSION_ARB, view->hints[PUGL_CONTEXT_VERSION_MINOR], + GLX_CONTEXT_FLAGS_ARB, (view->hints[PUGL_USE_DEBUG_CONTEXT] + ? GLX_CONTEXT_DEBUG_BIT_ARB + : 0), GLX_CONTEXT_PROFILE_MASK_ARB, (view->hints[PUGL_USE_COMPAT_PROFILE] ? GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB : GLX_CONTEXT_CORE_PROFILE_BIT_ARB), -- cgit v1.2.1