Mesa 7.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Mesa 7.2 (Default branch)
# 1  
Old 09-26-2008
Mesa 7.2 (Default branch)

Mesa is a 3-D graphics library which uses the OpenGL API (Application Programming Interface). Mesa cannot be called an implementation of OpenGL since the author did not obtain an OpenGL license from SGI. Furthermore, Mesa cannot claim OpenGL conformance since the conformance tests are only available to OpenGL licensees. Despite these technical/legal terms, you may find Mesa to be a valid alternative to OpenGL. Most applications written for OpenGL can use Mesa instead without changing the source code. License: OSI Approved Changes:
The OpenGL 2.1 API is now implemented, though some drivers don't support it yet. Support for the Intel G41 chipset was added. Several bugs were fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
glutExtensionSupported(3GLUT)					       GLUT					     glutExtensionSupported(3GLUT)

NAME
glutExtensionSupported - helps to easily determine whether a given OpenGL extension is supported. SYNTAX
int glutExtensionSupported(char *extension); ARGUMENTS
extension Name of OpenGL extension. DESCRIPTION
glutExtensionSupported helps to easily determine whether a given OpenGL extension is supported or not. The extension parameter names the extension to query. The supported extensions can also be determined with glGetString(GL_EXTENSIONS), but glutExtensionSupported does the correct parsing of the returned string. glutExtensionSupported returns non-zero if the extension is supported, zero if not supported. There must be a valid current window to call glutExtensionSupported. glutExtensionSupported only returns information about OpenGL extensions only. This means window system dependent extensions (for example, GLX extensions) are not reported by glutExtensionSupported. EXAMPLE
Here is an example of using glutExtensionSupported: if (!glutExtensionSupported("GL_EXT_texture")) { fprintf(stderr, "Missing the texture extension! "); exit(1); } Notice that the name argument includes both the GL prefix and the extension family prefix (EXT). SEE ALSO
glutGet, glGetString AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutExtensionSupported(3GLUT)