with glew if I wanted to check for a particular extension or GL version I had to write:
- cpp Code: Select all
if( GLEW_VERSION_1_2 )
{}
if( GLEW_EXT_framebuffer_object )
{}
it seems that Irrlicht provides all the function pointers required by it. But I'm still missing certain functionalities like glGenerateMipmapsEXT wich is not wrapped by Irrlicht. Should I have to write a patch for that or is better I just use glew alongside glext?
