summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* mesa: Remove unnecessary header from drawpix.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary header from enable.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary headers from fbobject.c.Vinson Lee2010-01-181-3/+0
|
* mesa: Remove unnecessary header from formats.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary header from image.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary headers from lines.c.Vinson Lee2010-01-181-2/+0
|
* mesa: Remove unnecessary header from mipmap.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary header from pixel.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary headers from pixelstore.c.Vinson Lee2010-01-181-3/+0
|
* mesa: Remove unnecessary header from points.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary header from polygon.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary header from state.c.Vinson Lee2010-01-181-1/+0
|
* mesa: Remove unnecessary headers from texcompress.c.Vinson Lee2010-01-181-3/+0
|
* mesa: Remove unnecessary headers from texformat.c.Vinson Lee2010-01-181-2/+0
|
* mesa: Remove unnecessary headers from texgetimage.c.Vinson Lee2010-01-181-2/+0
|
* mesa: Remove unnecessary header from teximage.c.Vinson Lee2010-01-171-1/+0
|
* mesa: Remove unnecessary header from texobj.c.Vinson Lee2010-01-171-1/+0
|
* mesa: Remove unnecessary header from texparam.c.Vinson Lee2010-01-171-1/+0
|
* mesa: Remove unnecessary headers from texstate.c.Vinson Lee2010-01-171-2/+0
|
* mesa: Use preprocessor to comment out code.Vinson Lee2010-01-171-2/+2
|
* mesa: Remove unnecessary headers from vtxfmt.c.Vinson Lee2010-01-171-2/+0
|
* mesa: bump version to 7.7.1-DEVELBrian Paul2010-01-051-4/+4
|
* mesa: add missing _mesa_lock_texture() callBrian Paul2010-01-041-0/+1
|
* mesa: added GL_DU8DV8_ATI in extract_float_rgba()Brian Paul2010-01-041-0/+2
| | | | Fixes warning seen with Shadowgrounds. See bug 24016.
* mesa: Prevent possible array out-of-bounds access by _mesa_light.Vinson Lee2010-01-041-15/+32
|
* mesa: regenerated enums.c fileBrian Paul2010-01-041-234/+231
|
* apple: Purge existing (not working) GLX_USE_APPLEGL from dated libGL on OSXJeremy Huddleston2010-01-031-4/+0
| | | | Signed-off-by: Jeremy Huddleston <[email protected]>
* mesa: Silence unused variable warning.Vinson Lee2009-12-311-0/+1
|
* mesa: Initialize variable in get_tex_color_index.Vinson Lee2009-12-291-1/+1
|
* mesa: set version string to 7.7mesa_7_7Ian Romanick2009-12-211-1/+1
|
* Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul2009-12-211-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.ac progs/demos/morph3d.c progs/demos/textures.c progs/glsl/shtest.c progs/glsl/texaaline.c progs/tests/packedpixels.c progs/xdemos/corender.c src/mesa/main/version.h
| * mesa: set version string to 7.6.1-rc4Ian Romanick2009-12-161-1/+1
| |
| * mesa: add missing semicolonBrian Paul2009-12-161-1/+1
| | | | | | | | See bug 25663.
* | mesa: set version string to 7.7-rc3mesa_7_7_rc3Ian Romanick2009-12-161-1/+1
| |
* | Merge branch 'mesa_7_6_branch' into mesa_7_7_branchIan Romanick2009-12-162-5/+11
|\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/unichrome/via_ioctl.c src/mesa/drivers/dri/unichrome/via_screen.c src/mesa/main/version.h src/mesa/state_tracker/st_atom.c
| * | mesa: set version string to 7.6.1-rc4mesa_7_6_1_rc4Ian Romanick2009-12-161-1/+1
| |/
| * mesa: test for __blrts for CPU_TO_LE32()Brian Paul2009-12-161-1/+1
| | | | | | | | See bug 25663.
| * mesa: no dlopen on BlueGeneBrian Paul2009-12-161-4/+10
| | | | | | | | See bug 25663.
* | Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul2009-12-116-20/+55
|\|
| * mesa: Fix array out-of-bounds access by _mesa_TexParameteriv.Vinson Lee2009-12-101-2/+4
| |
| * mesa: Fix array out-of-bounds access by _mesa_TexGend.Vinson Lee2009-12-091-2/+4
| | | | | | | | | | _mesa_TexGend calls _mesa_TexGenfv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_Lighti.Vinson Lee2009-12-091-1/+4
| | | | | | | | | | _mesa_Lighti calls _mesa_Lightiv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_Lightf.Vinson Lee2009-12-091-1/+4
| |
| * mesa: Fix array out-of-bounds access by _mesa_PointParameteri.Vinson Lee2009-12-091-2/+4
| | | | | | | | | | _mesa_PointParameteri calls _mesa_PointParameterfv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_PointParameterf.Vinson Lee2009-12-091-1/+4
| | | | | | | | | | _mesa_PointParameterf calls _mesa_PointParameterfv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_LightModelf.Vinson Lee2009-12-091-1/+4
| | | | | | | | | | _mesa_LightModelf calls _mesa_LightModelfv, which uses the params argument as an array.
| * mesa: fix baseLevel >= MAX_TEXTURE_LEVELS testBrian Paul2009-12-091-1/+1
| | | | | | | | | | This fixes invalid array indexing when baseLevel == MAX_TEXTURE_LEVELS. See bug 25528.
| * mesa: Fix array out-of-bounds access by _mesa_LightModeli.Vinson Lee2009-12-081-1/+4
| | | | | | | | | | _mesa_LightModeli calls _mesa_LightModeliv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_Fogf.Vinson Lee2009-12-081-1/+4
| | | | | | | | | | _mesa_Fogf calls _mesa_Fogfv, which uses the params argument as an array.
| * mesa: Fix array out-of-bounds access by _mesa_TexParameteri.Vinson Lee2009-12-081-1/+6
| | | | | | | | | | _mesa_TexParameteri calls set_tex_parameteri, which uses the params argument as an array.