From d2496306434c550d74bcc51d1c81fe71ca01e345 Mon Sep 17 00:00:00 2001 From: icicle Date: Sat, 31 Oct 2009 11:56:01 +0000 Subject: [PATCH] TG: Change GLX_VERSION_1_4 check git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@28927 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/x11/XGGLFormat.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b9dbaa1..711eea2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-31 Thomas Gamper + + * Source/x11/XGGLFormat.m + Check explicitly for GLX_SAMPLES and GLX_SAMPLE_BUFFERS. + 2009-10-29 Fred Kiefer * Source/gsc/GSGState.m (-_fillRect:withPattern:): Convert the diff --git a/Source/x11/XGGLFormat.m b/Source/x11/XGGLFormat.m index ff97264..d4af6bc 100644 --- a/Source/x11/XGGLFormat.m +++ b/Source/x11/XGGLFormat.m @@ -256,7 +256,7 @@ do \ case NSOpenGLPFASampleBuffers: { - #ifdef GLX_VERSION_1_4 + #ifdef GLX_SAMPLE_BUFFERS if ( glxminorversion >= 4 ) { ptr++; @@ -269,7 +269,7 @@ do \ } case NSOpenGLPFASamples: { - #ifdef GLX_VERSION_1_4 + #ifdef GLX_SAMPLES if ( glxminorversion >= 4 ) { ptr++;