summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-29r600: use CB_TARGET_MASK instead of CB_SHADER_MASK for setting color maskAndre Maasikas
makes blend functions work better Signed-off-by: Dave Airlie <airlied@linux.ie>
2009-09-29r600: user correct alpha blend factorAndre Maasikas
Signed-off-by: Dave Airlie <airlied@linux.ie>
2009-09-29r600: clear position enable bit when when wpos is not used by FPAndre Maasikas
Makes doom3 alot nicer..
2009-09-28st/xorg: Add debug for fallbacksJakob Bornecrantz
2009-09-28st/xorg: Make debug printing optionalJakob Bornecrantz
2009-09-28meta: Fix invalid PBO access from DrawPixels when trying to just alloc.Eric Anholt
This whole reuse of buffers (TexSubImage instead of TexImage, SubData instead of Data) is bad for hardware drivers, but it's even worse when we accidentally try to access the 2x2 PBO to fill the new 16x16 texture we're creating, producing GL errors. Fixes piglit pbo-drawpixels. Bug #14163.
2009-09-28intel: Drop my generatemipmap code in favor of the new shared code.Eric Anholt
2009-09-28intel: Remove some dead metaops code.Eric Anholt
2009-09-28Merge branch 'mesa_7_6_branch'Ian Romanick
Conflicts: Makefile src/mesa/main/version.h
2009-09-28Merge branch 'mesa_7_5_branch' into mesa_7_6_branchIan Romanick
Conflicts: src/mesa/main/version.h
2009-09-28docs: 7.5.2 md5 sumsIan Romanick
2009-09-28Prep for 7.5.2 releaseIan Romanick
2009-09-28docs: 7.6 md5 sumsIan Romanick
2009-09-28Prep for 7.6 releaseIan Romanick
2009-09-28st/mesa: check gl_texture_object::GenerateMipmap field when allocating texmemBrian Paul
In guess_and_alloc_texture() use the gl_texture_object::GenerateMipmap field as another hint as to whether to allocate space for a whole mipmap.
2009-09-28Merge branch 'mesa_7_6_branch'Brian Paul
2009-09-28Merge branch 'mesa_7_5_branch' into mesa_7_6_branchBrian Paul
2009-09-28Fix 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-28docs: list additional 7.5.2 bug fixesBrian Paul
2009-09-28docs: document gallium mipmap generation fixBrian Paul
2009-09-28st/mesa: fix st_generate_mipmap() issuesBrian 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-28st/mesa: fix/simplify st_texture_object::lastLevel calculationBrian 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-28gallium/util: add sanity check assertionsBrian Paul
2009-09-28mesa: use _mesa_get_current_tex_unit() helperBrian Paul
2009-09-28progs/perf: Include local headers before installed headers.Vinson Lee
Fixes compilation errors on platforms with older installed GL headers.
2009-09-28progs/tests: print usage info upon SPACE/uBrian Paul
2009-09-28progs/tests: re-indent mipmap_limits.cBrian Paul
2009-09-28llvmpipe: Grab a ref when the fb is set.Younes Manton
Based on softpipe commit a77226071f6814a53358a5d6caff685889d0e4ec.
2009-09-28softpipe: Fix MSVC build.José Fonseca
2009-09-28g3dvl: Fix MSVC build.José Fonseca
pipe/p_compiler for integer types. No declarations out of scope.
2009-09-28r300g: fix r300g cause GPU hang issue.Cooper Yuan
why there are two input position semantic tags is that ureg doesn't set vs input semantic due to commit: 6d8dbd3d1ec888 so use vs input index instead of semantic name.
2009-09-28xvmc: Fail on unsupported formats, operations.Younes Manton
2009-09-27g3dvl: Missing semicolon.Younes Manton
2009-09-27g3dvl: Formatting and cleanups.Younes Manton
2009-09-27g3dvl: Move XvMC under the Xorg state tracker.Younes Manton
2009-09-27g3dvl: Implement XvMC using pipe_video_context.Younes Manton
2009-09-27g3dvl: pipe_video_context interface, softpipe impl, auxiliary libsYounes Manton
2009-09-27util: Add util_next_power_of_two() for rounding a uint up to a POT.Younes Manton
2009-09-27r300g: fix erroneous conditionMaciej Cencora
2009-09-27r300g: don't force vertex position for HW TCL pathMaciej Cencora
It could be generated by vertex shader.
2009-09-27r300g: add some assertionsMaciej Cencora
Not sure why we are getting a shader with two inputs with position semantic, but we don't know how to handle it correctly so it's better to stop the app than lock the machine.
2009-09-27r300g: plug memory leakMaciej Cencora
2009-09-27r300g: add some debugging infoMaciej Cencora
2009-09-28r300g: fix r300 rs pathDave Airlie
2009-09-28r300g: rewrite RS state setup.Dave Airlie
Not 100% sure this is correct, but its more correct than what was here previous however it may require changes in the input routing for the frag shader.
2009-09-28r300g: silence compiler warningDave Airlie
2009-09-27i915g: Submit direct vertex buffersJakob Bornecrantz
2009-09-27i915g: Fix warningJakob Bornecrantz
2009-09-27i915g: Tile shared buffers as wellJakob Bornecrantz
2009-09-27i915g: Make sure to map tiled buffers via the gttJakob Bornecrantz