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
icetGLSetReadBuffer(3)						  IceT Reference					    icetGLSetReadBuffer(3)

NAME
icetGLSetReadBuffer -- set OpenGL buffer for images Synopsis #include <IceTGL.h> void icetGLSetReadBuffer( GLenum mode ); Description Set the OpenGL buffer from which to read images to composite. After the draw callback (specified by icetGLDrawCallback) returns, IceT grabs the rendered image from the OpenGL buffer specified by mode. This buffer is also used to write back fully composited images if the ICET_GL_DISPLAY option is on. mode is an OpenGL value that specifies the buffer. It is passed to glReadBuffer and glDrawBuffer. Accepted values are GL_FRONT, GL_BACK, GL_LEFT, GL_RIGHT, GL_FRONT_LEFT, GL_FRONT_RIGHT, GL_BACK_LEFT, GL_BACK_RIGHT, and any of the GL_AUXi identifiers. The current read buffer used is stored in the ICET_GL_READ_BUFFER state variable. The default value is GL_BACK. Errors ICET_INVALID_OPERATION icetGLInitialize has not been called for this IceT context. ICET_INVALID_ENUM mode is not a known OpenGL buffer identifier. Warnings None. Bugs The check of mode is perfunctory. It just checks mode against a list of known buffers. It does not check to see if the buffer actually exists or for any other buffers that might be defined in an OpenGL extension. Copyright Copyright (C)2010 Sandia Corporation Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains certain rights in this software. This source code is released under the New BSD License. See Also icetGLDrawCallback(3) IceT Reference August 9, 2010 icetGLSetReadBuffer(3)