aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/x11/glxapi.h
Commit message (Collapse)AuthorAgeFilesLines
* xlib: add support for GLX_ARB_create_contextBrian Paul2016-03-291-0/+5
| | | | | | | | | | | | | | | | | This adds the glXCreateContextAttribsARB() function for the xlib/swrast driver. This allows more piglit tests to run with this driver. For example, without this patch we get: $ bin/fbo-generatemipmap-1d -auto piglit: error: waffle_config_choose failed due to WAFFLE_ERROR_UNSUPPORTED_ ON_PLATFORM: GLX_ARB_create_context is required in order to request an OpenGL version not equal to the default value 1.0 piglit: error: Failed to create waffle_config for OpenGL 2.0 Compatibility Context piglit: info: Failed to create any GL context PIGLIT: {"result": "skip" } Reviewed-by: Jose Fonseca <[email protected]> Acked-by: Roland Scheidegger <[email protected]>
* xlib: simplify context handlingBrian Paul2014-03-031-1/+1
| | | | | | | Get rid of the fake_glx_context struct. Now, an XMesaContext is the same as a GLXContext. Reviewed-by: José Fonseca <[email protected]>
* mesa: remove outdated version lines in commentsRico Schüller2013-06-051-1/+0
| | | | Signed-off-by: Brian Paul <[email protected]>
* mesa: Restore 78-column wrapping of license text in C-style comments.Kenneth Graunke2013-04-231-3/+4
| | | | | | | | | | | | | | The previous commit introduced extra words, breaking the formatting. This text transformation was done automatically via the following shell command: $ git grep 'THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY' | sed 's/:.*$//' | xargs -I {} sh -c 'vim -e -s {} < vimscript where 'vimscript' is a file containing: /THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY/;/\*\// !fmt -w 78 -p ' * ' :wq Reviewed-by: Brian Paul <[email protected]>
* mesa: Add "OR COPYRIGHT HOLDERS" to license text disclaiming liability.Kenneth Graunke2013-04-231-1/+1
| | | | | | | | | | | | | | | This brings the license text in line with the MIT License as published on the Open Source Initiative website: http://opensource.org/licenses/mit-license.php Generated automatically be the following shell command: $ git grep 'THE AUTHORS BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/THE AUTHORS/THE AUTHORS OR COPYRIGHT HOLDERS/' {} This introduces some wrapping issues, to be fixed in the next commit. Reviewed-by: Brian Paul <[email protected]>
* mesa: Change "BRIAN PAUL" to "THE AUTHORS" in license text.Kenneth Graunke2013-04-231-1/+1
| | | | | | | | | | | | | | | | Generated automatically be the following shell command: $ git grep 'BRIAN PAUL BE LIABLE' | sed 's/:.*$//g' | xargs -I '{}' \ sed -i 's/BRIAN PAUL/THE AUTHORS/' {} The intention here is to protect all authors, not just Brian Paul. I believe that was already the sensible interpretation, but spelling it out is probably better. More practically, it also prevents people from accidentally copy & pasting the license into a new file which says Brian is not liable when he isn't even one of the authors. Reviewed-by: Brian Paul <[email protected]>
* Implement GLX_EXT_texture_from_pixmap.Brian2007-05-191-0/+5
| | | | Could be done more efficiently... but works.
* Remove the last remnants of GLX_BUILT_IN_XMESA. This allows the removal ofIan Romanick2005-07-261-7/+0
| | | | the evil, ugly GLX_PREFIX macro as well.
* Use __GLXextFuncPtr type instead of void * for generic functions toBrian Paul2004-11-251-9/+3
| | | | | avoid gcc 3.4 compiler warnings. Remove the unused/obsolete GLX_render_texture stuff.
* Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything.Ian Romanick2003-06-051-1/+0
|
* initial code for render-to-textureBrian Paul2003-01-141-3/+8
|
* added missing dispatch code for new AGP-related functionsBrian Paul2002-10-081-2/+5
|
* stub functions for glXAllocate/FreeMemoryNV()Brian Paul2002-08-221-1/+7
|
* updated comments. removed dead code.Brian Paul2002-03-151-6/+14
|
* more DRI libGL-related changesBrian Paul2001-05-291-2/+2
|
* more work on XMesa / libGL integrationBrian Paul2001-05-251-40/+29
|
* Initial changes to allow Mesa and its fake GLX to be built into XFree86 libGL.Brian Paul2001-05-241-4/+19
|
* added more GLX extension function stubsBrian Paul2000-12-151-15/+55
|
* added some more GLX extension entrypoints (fix GLUT link problems when using ↵Brian Paul2000-12-141-5/+23
| | | | glxext.h)
* variety of updates to better conform to real GLXBrian Paul2000-06-081-23/+13
|
* added glXGetFBConfigs(), fixed glXChooseFBConfig()Brian Paul2000-04-101-2/+3
|
* changed glXCopyContext() mask to unsigned long, per GLX specBrian Paul2000-02-271-2/+2
|
* changed glXCopyContext mask back to GLuintBrian Paul2000-02-251-2/+2
|
* changed glXCopyContext()'s mask to unsigned longBrian Paul2000-02-231-2/+2
|
* initial revBrian Paul1999-11-281-0/+162