Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-09-29 | docs: document GLSL sqrt(0) fix | Brian Paul | |
2009-09-29 | glsl: regenerated file | Brian Paul | |
2009-09-29 | glsl: rewrite sqrt(x) intrinsic to handle x=0 | Brian Paul | |
Since sqrt() is basically implemented in terms of RSQ/RCP we'll do a divide by zero if x=0 and wind up with unpredictable results. Now use CMP instruction to test for x<=0 and return zero in that case. | |||
2009-09-29 | glsl: add support for CMP instruction | Brian Paul | |
2009-09-29 | docs: fixed glXQueryContext(GLX_RENDER_TYPE) | Brian Paul | |
2009-09-29 | gallium/xlib: fix GLX_RENDER_TYPE query | Brian Paul | |
Return GLX_RGBA_TYPE or GLX_COLOR_INDEX_TYPE. | |||
2009-09-29 | mesa/xlib: fix GLX_RENDER_TYPE query | Brian Paul | |
Return GLX_RGBA_TYPE or GLX_COLOR_INDEX_TYPE. | |||
2009-09-29 | glx: indentation fixes | Brian Paul | |
2009-09-29 | mesa: bump version to 7.6.1 | Brian Paul | |
2009-09-29 | docs: initial 7.6.1 release notes | Brian Paul | |
2009-09-29 | mesa: work-around glXCopyContext() bug in _mesa_copy_texture_state() | Brian Paul | |
See bug 24217. | |||
2009-09-29 | softpipe: initialize the clear_flags bitvector in sp_create_tile_cache() | Brian Paul | |
This silences tons of valgrind warnings in programs that don't call glClear(), such as progs/demos/gamma. | |||
2009-09-29 | softpipe: Grab a ref when the fb is set. | Brian Paul | |
Nasty bug when the surface is freed and another is allocated right on top of it. The next time we set the fb state SP thinks it's the same surface and doesn't flush, and when the flush eventually happens the surface belongs to a completely different texture. (cherry picked from commit a77226071f6814a53358a5d6caff685889d0e4ec) Conflicts: src/gallium/drivers/softpipe/sp_context.c | |||
2009-09-28 | docs: update news.html file with 7.5.2 and 7.6 release | Brian Paul | |
2009-09-28 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Ian Romanick | |
Conflicts: src/mesa/main/version.h | |||
2009-09-28 | docs: 7.5.2 md5 sums | Ian Romanick | |
2009-09-28 | Prep for 7.5.2 release | Ian Romanick | |
2009-09-28 | docs: 7.6 md5 sums | Ian Romanick | |
2009-09-28 | Prep for 7.6 release | Ian Romanick | |
2009-09-28 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-28 | Fix build on non GLIBC platforms (FreeBSD at least) | Robert Noland | |
Build was broken by commit 9666529b5a5be1fcde82caadc2fe2efa5ea81e49 I'm not certain that this is entirely the correct fix since the demo from bug #23774 seemed to work before the commit that broke the build. Signed-off-by: Robert Noland <rnoland@2hip.net> Signed-off-by: Brian Paul <brianp@vmware.com> | |||
2009-09-28 | docs: list additional 7.5.2 bug fixes | Brian Paul | |
2009-09-28 | docs: document gallium mipmap generation fix | Brian Paul | |
2009-09-28 | st/mesa: fix st_generate_mipmap() issues | Brian Paul | |
The main issue is we didn't always have a gallium texture object with enough space to store the to-be-generated mipmap levels. When that's the case, allocate a new gallium texture and use st_texure_finalize() to copy images from the old texture to the new one. We also had the baseLevel parameter to st_render_mipmap() wrong. | |||
2009-09-28 | st/mesa: fix/simplify st_texture_object::lastLevel calculation | Brian Paul | |
Don't compute the st_texture_object::lastLevel field based on the texture filters. Use the _MaxLevel value that core Mesa computes for us. When called from the GenerateMipmap path, we'll use the lastLevel field as-is. | |||
2009-09-28 | gallium/util: add sanity check assertions | Brian Paul | |
2009-09-25 | intel: Handle GL_RGB8 for glCopyTex(Sub)Image. | Michel Dänzer | |
Avoids an unnecessary fallback. | |||
2009-09-25 | mesa: move declaration before code | Vinson Lee | |
2009-09-24 | i915: Fix GetBufferSubData in the case of a system-memory BO. | Eric Anholt | |
Bug #23760 (crashes in wine) | |||
2009-09-24 | intel: Flush the batch when we're about to subdata into a VBO. | Eric Anholt | |
This fixes the clears in openarena with the new metaops clear code, and the new piglit vbo-subdata-sync test. Bug #23857. | |||
2009-09-24 | i965: Clean up some mess with the batch cache. | Eric Anholt | |
Its flagging of extra state that's already flagged by the vtbl new_batch when appropriate was confusing my tracking down of the OA clear bug. | |||
2009-09-24 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-24 | softpipe: Increase GL_MAX_3D_TEXTURE_SIZE to 256. | Vinson Lee | |
2009-09-24 | i965: Emit zero initialization for NV VP temporaries as required. | Eric Anholt | |
This is similar to what r300 does inside the driver, but I've added it as a generic option since it seems most hardware will want it. Fixes piglit nv-init-zero-reg.vpfp and nv-init-zero-addr.vpfp. | |||
2009-09-24 | i965: Remove assert about NV_vp now that it somewhat works. | Eric Anholt | |
2009-09-24 | i965: Load NV program matrices when required. | Eric Anholt | |
2009-09-24 | mesa: Initialize NV_vertex_program fields for the parameter lists and such. | Eric Anholt | |
This helps let drivers treat NV_vp like ARB_vp. | |||
2009-09-24 | mesa: remove glEnable(GL_DEPTH_BOUNDS_TEST_EXT) check/warning | Brian Paul | |
At the time of the enable there may not be a Z buffer, but one may be attached to the FBO later. | |||
2009-09-24 | mesa: remove rgbMode check in enable_texture() | Brian Paul | |
If the currently bound FBO isn't yet validated it's possible for rgbMode to be zero so we'll lose the texture enable. This could fix some FBO rendering glitches, but I don't know of any specific instances. | |||
2009-09-24 | intel: use default array/element buffers in intel_generate_mipmap() | Brian Paul | |
If there happened to be a bound VBO when intel_generate_mipmap() was called we blew up because of a bad vertex array pointer. Fixes regnumonline, bug 23859. | |||
2009-09-24 | mesa: replace assertion with no-op function assignment | Brian Paul | |
2009-09-24 | mesa: added comment | Brian Paul | |
2009-09-24 | vbo: limit number of warnings to 10 | Brian Paul | |
Otherwise some apps will emit tons of warnings. | |||
2009-09-24 | radeon: Fix scissors for r600 KMS. | Pauli Nieminen | |
Radeon generic scissors code had problem that some of code was using exclusive and some inclusive bottom right corner. Only r600 driver is using exclusive coordinate so changed generic code to pass inclusive coordinate and r600 driver changes BR coordinate to be exclusive. | |||
2009-09-24 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-24 | tgsi/sse: Pass the lodbias, not zero. More comments. | Brian Paul | |
This fixes the glean/glsl1 "texture2D(), with bias" test when using SSE. | |||
2009-09-24 | mesa: added default case return to silence warning | Brian Paul | |
2009-09-24 | glsl: init var to silence warning | Brian Paul | |
2009-09-24 | glsl: fix missing initializers warning | Brian Paul | |
2009-09-24 | r600: add support for CUBE textures, also TXP | Andre Maasikas | |
seems to work here ... |