* Source/x11/XGGLFormat.m (-assembleGLXAttributes:): Use

GLX_BUFFER_SIZE for NSOpenGLPFAColorSize instead of setting all
the single colour sizes, which was wrong.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@34136 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2011-11-07 20:53:54 +00:00
parent 5454ce9e20
commit 6e7cc10890
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2011-11-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGGLFormat.m (-assembleGLXAttributes:): Use
GLX_BUFFER_SIZE for NSOpenGLPFAColorSize instead of setting all
the single colour sizes, which was wrong.
2011-11-07 Fred Kiefer <FredKiefer@gmx.de>
* Source/x11/XGServerEvent.m (initialize_keyboard): Use

View file

@ -164,9 +164,12 @@ do \
case NSOpenGLPFAColorSize:
{
ptr++;
append(GLX_BUFFER_SIZE, *ptr);
/*
append(GLX_RED_SIZE, *ptr);
append(GLX_GREEN_SIZE, *ptr);
append(GLX_BLUE_SIZE, *ptr);
*/
break;
}
case NSOpenGLPFAAlphaSize: