mirror of
https://github.com/gnustep/libs-back.git
synced 2025-04-22 23:42:16 +00:00
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
This commit is contained in:
parent
460445a4dc
commit
eefc79f2de
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-10-31 Thomas Gamper <icicle@cg.tuwien.ac.at>
|
||||
|
||||
* Source/x11/XGGLFormat.m
|
||||
Check explicitly for GLX_SAMPLES and GLX_SAMPLE_BUFFERS.
|
||||
|
||||
2009-10-29 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/gsc/GSGState.m (-_fillRect:withPattern:): Convert the
|
||||
|
|
|
@ -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++;
|
||||
|
|
Loading…
Reference in a new issue