Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-07 | mesa: remove GL_MESA_program_debug extension | Brian Paul | |
This was never fully fleshed out and hasn't been used. | |||
2009-02-17 | mesa: turn on reporting of GLSL version 1.20 | Brian Paul | |
The new array features, precision/invariant/centroid qualifiers, etc. were done a while back. The glGetString(GL_SHADING_LANGUAGE_VERSION) query returns "1.20" now (for drivers that support it anyway). | |||
2009-01-23 | Track two sets of back-face stencil state | Ian Romanick | |
Track separate back-face stencil state for OpenGL 2.0 / GL_ATI_separate_stencil and GL_EXT_stencil_two_side. This allows all three to be enabled in a driver. One set of state is set via the 2.0 or ATI functions and is used when STENCIL_TEST_TWO_SIDE_EXT is disabled. The other is set by StencilFunc and StencilOp when the active stencil face is set to BACK. The GL_EXT_stencil_two_side spec has more details. http://opengl.org/registry/specs/EXT/stencil_two_side.txt | |||
2008-10-10 | mesa: remove unneeded includes | Brian Paul | |
2008-08-26 | mesa: don't check for GLSL 1.2 to advertise GL 2.1 | Brian Paul | |
The GLSL 1.2 features are minor... | |||
2008-07-24 | mesa: move extensions->version code into separate function | Brian Paul | |
2008-07-24 | mesa: don't include Mesa version in GL_SHADING_LANGUAGE_VERSION string | Brian Paul | |
2008-04-11 | comments | Brian Paul | |
2007-09-28 | Remove test for EXT_blend_logic_op in glGetString when determining GL version. | Brian | |
EXT_blend_logic_op is slightly different from GL 1.1's RGBA logicop mode and does not have to be supported. Per conversation with Roland. | |||
2007-03-10 | Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesa ↵ | Brian | |
into glsl-compiler-1 | |||
2007-03-10 | check for EXT_blend_equation_separate for 2.0 | Brian | |
2007-03-07 | use 2.0, 2.1 version strings | Brian | |
2006-11-03 | Minor changes to get ready for OpenGL 2.1. | Brian Paul | |
2006-11-02 | check for shader extensions for OpenGL 2.0 | Brian Paul | |
2006-11-02 | Add ATI_separate_stencil and use it in preference to EXT_stencil_two_side | Brian Paul | |
since the former is what's used for OpenGL 2.0. | |||
2006-10-02 | return null if no context | Brian Paul | |
2006-08-01 | Clean-up FEATURE_ARB_shader_objects #ifdefs. Bug 7492. | Michal Krol | |
2006-06-12 | Add support for GL_APPLE_vertex_array_object. Several test programs | Ian Romanick | |
and demos are also added. Adding basic support to drivers should be as easy as just enabling the extension, though thorough test would also be required. | |||
2006-04-25 | Remove carriage returns. | Michal Krol | |
2006-04-04 | Return GLSL version string (1.10). | Michal Krol | |
2005-02-11 | mesa-main-0-NULL.patch from Jeff Muizelaar | Keith Whitwell | |
2005-01-16 | _mesa_GetInteger/Float/Boolean/Doublev() are now generated with the new | Brian Paul | |
get_gen.py Python script. Moved GetString(), GetPointer(), GetError() into new getstring.c file. |