mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
* 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:
parent
5454ce9e20
commit
6e7cc10890
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue