summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-09-30Revert "Prefer intrinsics to handrolled atomic ops."7.8Tom Fogal1-2/+2
This reverts commit 5f66b340aa49c6bc8d0acb2d1a6f8e9a7ef2cb2e, quickly fixing 30514.
2010-09-26Prefer intrinsics to handrolled atomic ops.Tom Fogal1-2/+2
2010-09-26Implement x86_64 atomics for compilers w/o intrinsics.Tom Fogal1-0/+47
Really old gcc's (3.3, at least) don't have support for the intrinsics we need. This implements a fallback for that case.
2010-09-16progs/egl: Link xeglthreads to -lpthread.Chia-I Wu1-1/+1
2010-09-14mesa: set VERSION to 7.8.3-rc1Brian Paul1-1/+1
2010-08-24docs: add link to 7.8.3 release notesBrian Paul1-0/+1
2010-08-24docs: added news update for 7.8.3 (date TBD)Brian Paul1-0/+8
2010-08-24mesa: bump version to 7.8.3Brian Paul2-3/+3
2010-08-24osmesa: remove unused varBrian Paul1-1/+0
2010-08-23Add release notes for recent bug fixes.Tom Fogal1-0/+3
2010-08-23st/mesa: fix ReadPixels crashes when reading depth/stencil from a FBOBrian Paul1-0/+7
This is based on a patch from Marek Olšák. NOTE: This is a candidate for the Mesa 7.8 branch.
2010-08-23swrast: fix span color array pointer assignment for 32-bit/channel renderingM.Froehlich@science-computing.de1-0/+17
See fd.o bug 29487. NOTE: This is a candidate for the 7.8 branch. Signed-off-by: Brian Paul <brianp@vmware.com>
2010-08-19Regenerate mangling header.Tom Fogal1-3/+123
2010-08-08Update release notes for 7.8.3Marek Olšák1-0/+1
2010-08-08r300c: do not advertise half float vertex on RV3xx, RS4xx, RC4xxMarek Olšák2-2/+2
Fixes a hardlock. (cherry picked from commit 1e46de3a834b361f4227f90dd1fe2e401d0d7723)
2010-08-06Add release notes for 7.8.3.Tom Fogal1-0/+85
2010-08-05Revert "radeon: allow driconf vblank settings with dri2"Tom Fogal1-1/+0
As requested by Alex Deucher; dri2ConfigQueryExtension is not available in 7.8. This reverts commit 66ad60399ae005084ad8c07569a1c9a461c39ec9.
2010-08-05st/mesa: fix FRAMEBUFFER_UNSUPPORTED with the D24S8 formatMarek Olšák1-9/+21
Fixes FDO bug #29116. (cherry picked from commit 4fd39a8d69cade6db5c4a0295a5f5f3014110b1c)
2010-08-04swrast: fix 16-bit/channel renderingBrian Paul1-1/+1
NOTE: This is a candidate for the 7.8 stable branch (cherry picked from commit e3d8d25ebf4e052432f13513d03a420bc22d399d)
2010-08-04mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens().José Fonseca3-2/+12
This fixes crashes with the memory debugging routines on Windows. NOTE: This is a candidate for the 7.8 stable branch (cherry picked from commit edbc302ad678e1a4a8803ba0e827a13dd27105d2)
2010-08-04mesa: fix texenv generation when num color bufs == 0Brian Paul1-1/+4
Before, if there were no color buffers enabled (with glDrawBuffers(GL_NONE)) when the texenv program was generated, we'd emit writes to OUTPUT[1] but the OutputsWritten mask was 0. This inconsistency caused an assertion to fail later in the Mesa->TGSI translation. Fixes fd.o bug 28169 NOTE: this is a candidate for the 7.8 branch (and depends on commit b6b9b17d27c570cc99ae339e595cf2f63ca5e8d7). (cherry picked from commit 6e83420ee0ccb2228fab0f86a6e8bf8a6aefe57a)
2010-08-04mesa: make the number of draw buffers part of the texenv program key stateBrian Paul2-5/+9
All the state that effects the program should be in the key. This didn't help with bug 28169 but is a good fix anyway. NOTE: this is a low-priority candidate for the 7.8 branch. In practice, this issue might never be hit. (cherry picked from commit b6b9b17d27c570cc99ae339e595cf2f63ca5e8d7)
2010-08-04radeon: fix glCopyTex(Sub)ImageMaciej Cencora1-2/+11
Fallback to swrast for software renderbuffers (cherry picked from commit 1a8a230a61289392e8300901dfabd7911799cbc3)
2010-08-04radeon: fix glCopyTex(Sub)Image if user FBO is boundMaciej Cencora1-3/+6
Fixes piglit/fbo-blit and wine d3d9 unit test. (cherry picked from commit a68e8a4eaadfe2a1e4999d5e378c7d9fa99dc656)
2010-08-04glsl: fix indirect addressing of gl_TextureMatrix[] arraysTom Fogal1-1/+31
The code to emit an array of OpenGL state vars lacked the code to handle the gl_TextureMatrix[] array. Fixes fd.o bug 28967 (manual cherry pick of 41f66915ab3d052e0e2ef06000d6534eb7776ec6) Acked-by: Brian Paul <brianp@vmware.com>
2010-08-04glsl: fix 'if ((x=foo()) > 1.0)' bugTom Fogal1-1/+5
Fixes fd.o bug 27216. May also be the root cause of fd.o bug 28950. We weren't propogating the storage info for the x=foo() expression up through the IR tree to the inequality expression. (manual cherry-pick 3751e6e1fc385739022d0942b46e175632ad0d4b) Acked-by: Brian Paul <brianp@vmware.com>
2010-08-04st/mesa: fix bug in emit_adjusted_wpos()Brian Paul1-2/+6
If we bias x,y we still need to pass through z,w in case the shader reads gl_FragCoord.z or .w. Fixes fd.o bug 29183 (piglit glsl-bug-22603). NOTE: This is a candidate for the 7.8 branch.
2010-08-04radeon: fix some wine d3d9 testsTom Fogal1-0/+8
Need to flush command stream before mapping texture image that is referenced by current cs. This is a manual application of ba03a0b5ba73bc8e79d0ffa6d1da623544716f74, which could not be cherry-picked directly due to refactoring. Acked-by: Maciej Cencora <m.cencora@gmail.com>
2010-08-03r600: fix sin,cos functions on r600Andre Maasikas1-9/+133
r600 doesnt need the same normalization as r700 - instead it requires range to be truncated to -pi..pi I left the range trunc also effective on r700 althouch according the docs it has sufficent range (-512*PI, +512*PI). The instructions seem to be used not too often to cause perf loss because of this Based on patches and testing by Conn Clark and Alain Perrot (cherry picked from commit d6a5f94ea4d03b05c434fcad125d1f9c50c638e8)
2010-08-03r600: since 8744c36e added asserts - use another random register for shader ↵Andre Maasikas1-1/+1
with no output (cherry picked from commit 9b3bf392e1af72d29afa0804260cac4d8ffe24e1)
2010-08-03r600: Flip point sprite coordinates when rendering to an FBO.Henri Verbeet1-1/+3
This supersedes http://lists.freedesktop.org/archives/mesa-dev/2010-July/001442.html. (cherry picked from commit 2fdff50999825f5698f1f7f88565162f39227b2f)
2010-08-03r600: workaround 3 comp GL_SHORT vertex attribute format on r700Andre Maasikas1-1/+3
guess it's a hw errata? (cherry picked from commit 51c438feb765cf03d1a6448295e6c62be61a5e56)
2010-08-03r600: GL_COORD_REPLACE state is only relevant when point sprites are enabled.Henri Verbeet1-6/+11
(cherry picked from commit 71646528da5355468be8b52be662d0afd49a38f1)
2010-08-03r600: fix warningsMarc1-2/+2
(cherry picked from commit 5552dffa39d1401d20df4696540f5de2e8c852ea)
2010-08-03r600: Make next_inst() static.Henri Verbeet2-59/+61
(cherry picked from commit 8744c36ea4f32124e91d26cab2bb76529f6eecf1)
2010-08-03r600: Assert output registers have a valid export index.Henri Verbeet1-0/+4
(cherry picked from commit 1bf75a921bcd11dfdc389f490081d83ab536fc58)
2010-08-03r600: Process exports for all written fragment outputs.Henri Verbeet1-26/+12
(cherry picked from commit 1ec492a366e236569dc68f4de32e641c88cbcd63)
2010-08-03r600: Fill uiFP_OutputMap for all written fragment outputs.Henri Verbeet1-16/+17
(cherry picked from commit 1f7bc87391bc42eb9003020b7654e985494c6e61)
2010-08-03r600: enable VERT_RESULT_PSIZ - makes point size & attenuation workAndre Maasikas2-2/+29
doc additions: shader export ARRAY_BASE for EXPORT_POS: 60 is position, 61 is misc vec(VS_OUT_MISC_VEC - used here), 62, 63 are clip distance vectors(VS_OUT_CCDIST#) sorry for formating - there seem to be so many different styles in r600 (cherry picked from commit 12172071b5f5cb7f475a20ead8a65eb12fa94737)
2010-08-03r600: adjust point sprites after 911fa4a4a1Andre Maasikas1-10/+11
there's no more vp results for point coords so we cannot iterate over vp outputs. Use only Point.CoordReplace[i] (cherry picked from commit 04a148629f565f556d0b6e7465f8a19921eed7af)
2010-08-03mesa: return retval in _mesa_RenderObjectUnpurgeable()Brian Paul1-1/+1
Found by Vinson with static analysis. NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit 41bcd8cb1ee93209d38af7b47a158d20a6c5ae11)
2010-08-03r600: fix typo in r700 assemblerAlex Deucher1-1/+1
Noticed by Henri Verbeet on IRC. NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit 2bd69080a229fb81685234a08922dffbcecdfe95)
2010-08-03radeon: Also flush if it's not the current context that's being destroyed.Henri Verbeet1-1/+1
This avoids calling radeonFlush() during context destruction, when ctx->DrawBuffer would be NULL. NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit fef9b532cd1631cc53056b9eba4369d1310b88df)
2010-08-03radeon: allow driconf vblank settings with dri2Alex Deucher1-0/+1
fixes: https://bugs.freedesktop.org/show_bug.cgi?id=28771 NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit 0a7803cbaca13033d9ed31ef33f59efa913fbfce)
2010-08-03mesa: fix _mesa_Texture/Render/BufferObjectUnpurgeable() return valuesBrian Paul1-3/+3
Fixes piglit object_purgeable-api-pbo, object_purgeable-api-vbo and object_purgeable-api-texture failures with swrast. NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit 2f4ce2564577755aaf58d05dec3a66d9982e56e1)
2010-08-03radeon: lower texture memory consumption is some casesMaciej Cencora1-1/+1
When searching for valid miptree check images in range of [BaseLeve, MaxLevel] not [MinLod, MaxLoad]. Prevents unnecessary miptree allocations in cases when during every rendering operation different texture image level was selected using MIN_LOD = MAX_LOD = level (for every level new miptree for whole texture was allocated). Candidate for 7.8 branch. Signed-off-by: Maciej Cencora <m.cencora@gmail.com> (cherry picked from commit 72e6a1e72f21653295165320fbca6961eddc9eb3)
2010-08-03radeon: fix teximage migration failure in rare caseMaciej Cencora1-4/+4
Always store selected miptree in texObj->mt so get_base_teximage_offset returns correct data. Found with piglit/mipmap-setup. Candidate for 7.8 branch. Signed-off-by: Maciej Cencora <m.cencora@gmail.com> (cherry picked from commit ad24ea37bb0cef7b383bb38e31466b6bb1f7fce6)
2010-08-03r300c: Fix vertex data setup for named buffer objects with unaligned offsetMaciej Cencora1-2/+1
Candidate for 7.8 branch Signed-off-by: Maciej Cencora <m.cencora@gmail.com> (cherry picked from commit 452a7d5a9d339db3326f33d464dce1a879ccc533)
2010-08-03osmesa: remove old renderbuffer before adding newBrian Paul1-0/+1
Fixes fd.o bug 10966 when OSMesaMakeCurrent() was called twice. NOTE: This is a candidate for the 7.8 branch. (cherry picked from commit 91c37599f621a0ec498c0f0add14f16470ca852b)
2010-08-03mesa: initialize extension string when context is first boundBrian Paul2-2/+2
...instead of waiting until glGetString(GL_EXTENSIONS) is called. This fixes a problem where the MESA_EXTENSION_OVERRIDE env var is ignored if the app never calls glGetString(GL_EXTENSIONS). NOTE: this is a candidate patch for the 7.8 branch. (cherry picked from commit a879d14ecf818d767f5da9dd7fd3b0cd8816cf29)