Re: Osx

"James Supancic" <[email protected]>
Newsgroups gmane.comp.graphics.chromium.user
Message-ID <[email protected]>
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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.