From: James S. <arr...@gm...> - 2006-09-20 21:44:54
|
My guess is that the root of the problem has something to do with CGLSetOption, further, I would guess that you may have some mutual recursion going on... The function spewing the message is CGLError CGLSetOption(CGLGlobalOption pname, long param) { // DEBUG_FUNCTION(CGLSetOption); crDebug("CGLSetOption( %i )", pname); stubInit(); return stub.wsInterface.CGLSetOption( pname, param ); } code 505 is for the option kCGLGOUseErrorHandler I am not really sure... you may try changing it to CGLError CGLSetOption(CGLGlobalOption pname, long param) { // DEBUG_FUNCTION(CGLSetOption); crDebug("CGLSetOption( %i )", pname); stubInit(); return noErr; } temporarily for the purpose of debugging. If it fixes the problem we will know a lot more about the problem. Another option might be to use GLX, don't the new Apple hosts support X11? I am not sure if GLX is supported or not... Thank you for your time, James Steven Supancic III |