summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/version.h
Commit message (Collapse)AuthorAgeFilesLines
* dri_util: Use _mesa_override_gl_version_contextlessIan Romanick2015-05-281-3/+0
| | | | | | | | | Remove _mesa_get_gl_version_override. We don't need two functions that do basically the same thing. This change seemed easier (esp. with the next patch) than going the other way. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
* mesa: add _mesa_get_version, a ctx-independent variant of _mesa_compute_versionMarek Olšák2014-08-111-0/+4
| | | | | Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
* mesa: add a context-independent variant of _mesa_override_gl_versionMarek Olšák2014-08-111-3/+5
| | | | | | | v2: changed GLboolean -> bool Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
* mesa: make _mesa_override_glsl_version context-independentMarek Olšák2014-08-111-1/+2
| | | | | Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
* mesa: remove outdated version lines in commentsRico Schüller2013-06-051-1/+0
| | | | Signed-off-by: Brian Paul <brianp@vmware.com>
* 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 <brianp@vmware.com>
* 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 <brianp@vmware.com>
* 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 <brianp@vmware.com>
* mesa: Remove unused version #defines from version.h.Matt Turner2013-03-121-11/+0
| | | | Reviewed-by: Eric Anholt <eric@anholt.net>
* mesa version: add _mesa_get_gl_version_overrideJordan Justen2013-02-281-0/+3
| | | | | | | | | This will allow other code to get access to the override version before a context is available. Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
* mesa: bump version to 9.2 (devel)Andreas Boll2013-01-311-2/+2
| | | | | | | Now that branch 9.1 is created, bump the minor version in master. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
* mesa: allow MESA_GL_VERSION_OVERRIDE to override the API typeJordan Justen2012-09-281-0/+3
| | | | | | | | | | | | | | | | | | | Change the format to MAJOR.MINOR[FC] For example: 2.1, 3.0FC, 3.1 The FC suffix indicates a forward compatible context, and is only valid for versions >= 3.0. Examples: 2.1: GL Legacy/Compatibility context 3.0: GL Legacy/Compatibility context 3.0FC: GL Core Profile context + Forward Compatible 3.1: GL Core Profile context 3.1FC: GL Core Profile context + Forward Compatible Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Chad Versace <chad.versace@linux.intel.com> Reviewed-by: Eric Anholt <eric@anholt.net>
* mesa: bump version to 9.1 (devel)Andreas Boll2012-09-091-2/+2
| | | | | | | Now that branch 9.0 is created, bump the minor version in master. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
* mesa: Bump version to 9.0Ian Romanick2012-08-301-3/+3
| | | | | | | | Now that OpenGL 3.1 is supported by at least one driver, follow tradition and bump the major version number. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
* mesa: Update the version string to 8.1-develIan Romanick2012-02-161-1/+1
| | | | | | The numeric version was updated in 46883e0. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
* Bump version to 8.1 (devel)Ian Romanick2012-02-101-1/+1
| | | | Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
* mesa: Remove unused opengl version macroJakob Bornecrantz2012-01-111-11/+0
| | | | | Signed-off-by: Jakob Bornecrantz <jakob@vmware.com> Reviewed-by: Brian Paul <brianp@vmware.com>
* mesa: Bump version to 8.0 (devel)Kenneth Graunke2012-01-091-3/+3
| | | | | | | Also update the release notes to mention that Mesa 8.0 implements OpenGL 3.0. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
* mesa: Allow overriding GLSL version with environment variableChad Versace2011-09-281-0/+2
| | | | | | | | | | | | | | Override the context's GLSL version if the environment variable MESA_GLSL_VERSION_OVERRIDE is set. Valid values for MESA_GLSL_VERSION_OVERRIDE are integers, such as "130". MESA_GLSL_VERSION_OVERRIDE has the same behavior as INTEL_GLSL_VERSION, except that it applies to all drivers, not just Intel's. Since the former supercedes the latter, this patch disables the latter. Reviewed-by: Dave Airlie <airlied@gmail.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Chad Versace <chad@chad-versace.us>
* mesa: bump version to 7.12 (devel)Brian Paul2011-06-291-2/+2
|
* mesa: bump version to 7.11Vinson Lee2011-01-051-3/+3
|
* mesa: Clean up header file inclusion in version.h.Vinson Lee2010-11-061-1/+1
|
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-1/+1
|
* mesa: bump version to 7.10Vinson Lee2010-09-171-3/+3
|
* mesa: bump version to 7.9Brian Paul2010-03-051-3/+3
| | | | Now that the 7.8 branch has been created Mesa/master will be version 7.9
* mesa: added _mesa_compute_version() in new version.c fileBrian Paul2010-01-051-0/+7
|
* mesa: bump version to 7.8Brian Paul2009-11-181-3/+3
|
* mesa: bump version to 7.7Brian Paul2009-09-081-3/+3
|
* mesa: bump version to 7.6 (devel)Brian Paul2009-05-011-3/+4
|
* mesa: fix merge conflict (in comment)Brian Paul2009-02-241-4/+0
|
* mesa: merge gallium-0.2 into gallium-master-mergeBrian Paul2009-02-091-0/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit 'origin/gallium-0.2' into gallium-master-merge Conflicts: Makefile docs/relnotes-7.4.html docs/relnotes.html src/mesa/drivers/dri/i965/brw_wm.h src/mesa/main/imports.c src/mesa/main/mtypes.h src/mesa/main/texcompress.c src/mesa/main/texenvprogram.c src/mesa/main/version.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_draw.c
| * mesa: set version to 7.4 for mesa_7_4_branchBrian Paul2009-01-291-3/+3
| |
| * mesa: set version to 7.3Brian Paul2009-01-291-1/+1
| |
* | mesa: master is open for new development, eventually will be Mesa 7.5Brian Paul2009-01-221-3/+3
| |
* | mesa: set version to 7.3Brian Paul2009-01-221-1/+1
|/
* mesa: bump version to 7.3-rc3Brian Paul2009-01-201-1/+1
|
* mesa: bump version to 7.3-rc2Brian Paul2009-01-141-1/+1
|
* mesa: set version string to 7.3-rc1Brian Paul2009-01-081-1/+1
|
* mesa: set version string to 7.3-develBrian Paul2008-08-251-4/+4
|
* prep for 7.1 rc4Brian Paul2008-08-161-1/+1
|
* bump version to rc3Brian Paul2008-07-081-1/+1
|
* mesa: bump version to rc2Brian Paul2008-07-081-1/+1
|
* set version string to 7.1 rc1Brian Paul2008-05-271-1/+1
|
* master/trunk is now for Mesa 7.1 devel: bump versionsBrian2007-05-141-3/+3
|
* Version bumps for 7.0Brian2007-04-271-7/+7
|
* bump version to 6.5.3Brian2007-01-301-7/+7
|
* bump version to 6.5.2Brian Paul2006-09-211-3/+3
|
* bump version to 6.5.1Brian Paul2006-04-071-4/+4
|
* bump version to 6.5Brian Paul2005-08-221-4/+4
|
* Bump version to 6.3.2Brian Paul2005-08-161-3/+3
|