Search found 3 matches
- Tue Jun 07, 2011 11:33 pm
- Forum: Bug reports
- Topic: [fixed] Building trunk in OS X in 64-bit with 10.6 SDK
- Replies: 4
- Views: 908
Now I'm getting this error: In file included from /sources/3d-vr/irrlicht/source/Irrlicht/MacOSX/../COpenGLDriver.h:25, from /sources/3d-vr/irrlicht/source/Irrlicht/MacOSX/../COpenGLTexture.cpp:11: /sources/3d-vr/irrlicht/source/Irrlicht/MacOSX/../COpenGLExtensionHandler.h: In member function 'void ...
- Mon Jun 06, 2011 8:08 pm
- Forum: Bug reports
- Topic: [fixed] Building trunk in OS X in 64-bit with 10.6 SDK
- Replies: 4
- Views: 908
Looking back at the patch, I'm not sure if the #elif at line 687 of COpenGLDriver.cpp should be that, or perhaps a separate #if/#endif block. It seems that GL_ARB_framebuffer_sRGB and GL_EXT_framebuffer_sRGB should both be treated, without an else-if. As for the other patches — COpenGLSLMaterialRend...
- Mon Jun 06, 2011 4:14 pm
- Forum: Bug reports
- Topic: [fixed] Building trunk in OS X in 64-bit with 10.6 SDK
- Replies: 4
- Views: 908
[fixed] Building trunk in OS X in 64-bit with 10.6 SDK
I made a few changes to trivial things. There's one change that's not so trivial though: In OS X, a GLhandleARB is a pointer . This means that it can't be cast to a GLuint. I worked around this by duplicating the extGlProgramParameteri function (as can be seen in the patch). There may be a better wa...