Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glx: Remove #include <GL/glxint.h> | Adam Jackson | 2017-03-28 | 1 | -1/+0 |
| | | | | | | | We're not using anything in it, and we don't want to inherit struct definitions from some other package anyway. Signed-off-by: Adam Jackson <[email protected]> | ||||
* | Don't cast the return value of malloc/realloc | Matt Turner | 2012-09-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch has been generated by the following Coccinelle semantic patch: // Don't cast the return value of malloc/realloc. // // Casting the return value of malloc/realloc only stands to hide // errors. @@ type T; expression E1, E2; @@ - (T) ( _mesa_align_calloc(E1, E2) | _mesa_align_malloc(E1, E2) | calloc(E1, E2) | malloc(E1) | realloc(E1, E2) ) | ||||
* | glx/dri: add initial dri interface for GLX_EXT_framebuffer_sRGB. | Dave Airlie | 2011-03-06 | 1 | -2/+2 |
| | | | | This realigns the name of the glx bit to align with the core mesa names. | ||||
* | glx: add initial GLX_EXT_framebuffer_sRGB support. | Dave Airlie | 2011-03-06 | 1 | -0/+5 |
| | | | | | | | | | | this doesn't bind to drivers yet, just enough to in theory make indirect work against other servers. I'm really not sure what the rules for adding extensions to the known_gl_extensions list as it looks to be missing a few. are these GL extensions that have GLX protocol?? Signed-off-by: Dave Airlie <[email protected]> | ||||
* | glx: Rename glcontextmodes.[ch] to glxconfig.[ch] | Kristian Høgsberg | 2010-07-28 | 1 | -0/+304 |