summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-12-12Remove grammar module -- no dependencies left.Michal Krol
2009-12-12slang: Delete a file that is now autogenerated.Michal Krol
This file has been modified in master and removed in feature branch. This gave a merge conflict I couldn't resolve by removing and git adding it to index.
2009-12-12Merge branch 'master' into glsl-pp-rework-2Michal Krol
Conflicts: progs/perf/drawoverhead.c progs/perf/teximage.c progs/perf/vbo.c progs/perf/vertexrate.c src/mesa/shader/slang/library/slang_common_builtin_gc.h
2009-12-12r300: disable blit debugging infoMaciej Cencora
2009-12-12r300: emit number of used colorbuffers to pass radeon cs checkerMaciej Cencora
2009-12-12r300: setup render target format for r300/r400 cards tooMaciej Cencora
2009-12-12r300: finish blit support for r300Maciej Cencora
2009-12-12more blit fixesMaciej Cencora
2009-12-12blit WIPMaciej Cencora
2009-12-12r300: use accelerated emit for CopyTex[Sub]Image functionsMaciej Cencora
2009-12-12r300: accelerated blit supportMaciej Cencora
2009-12-12r300: fix wrong assertionMaciej Cencora
2009-12-12r300: export translateTexFormat functionMaciej Cencora
2009-12-12r300: refactor PVS code and constants emissionMaciej Cencora
2009-12-12r300: refactor R500 fragment program emissionMaciej Cencora
2009-12-12r300: refactor color buffer setupMaciej Cencora
2009-12-12r300: use _mesa_meta_Clear for buffer clearsMaciej Cencora
2009-12-12r300: minor texture code refactoringMaciej Cencora
2009-12-11gallium: added comment for pipe_reference() return valueBrian Paul
2009-12-11mesa: minor reformatting/rewrapping in dd.hBrian Paul
2009-12-11mesa: remove unused ctx->Driver.ActiveTexture() hookBrian Paul
2009-12-11mesa: updated commentBrian Paul
2009-12-11Revert "scons: Pass -fno-strict-aliasing to gcc."Brian Paul
This reverts commit a2937a2f4ecf22a5a4242cd0a350f20228f50232. Per Jose's comment, We don't want this on master.
2009-12-11Merge branch 'mesa_7_7_branch'Brian Paul
Conflicts: src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/drivers/dri/intel/intel_span.c
2009-12-11Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul
2009-12-11docs: updated 7.6.1 relnotes with GLSL fixesBrian Paul
2009-12-11mesa: remove unnecessary loop in _mesa_remove_output_reads()Brian Paul
2009-12-11Merge branch 'mesa_7_6_branch' into mesa_7_7_branchBrian Paul
2009-12-11mesa: check dst reg in _mesa_find_free_register()Brian Paul
If a register was only being used as a destination (as will happen when generated condition-codes) we missed its use. So we'd errantly return a register index that was really in-use, not free. Fixes bug 25579.
2009-12-11sparc: additional preprocessor test for SPARC 64-bitAurelien Jarno
2009-12-11scons: Tweak MSVC release options.José Fonseca
Enable whole program optimizations and fast math.
2009-12-11svga: Add a missing dependency from the prescale state.José Fonseca
Thanks for Keith to finding this. Fixes Jedi Knight 2 menus.
2009-12-11svga: Always pass SVGA3D_SURFACE_HINT_DYNAMIC.José Fonseca
Since we're reusing buffers we're effectively transforming all of them into dynamic buffers. It would be nice to not cache long lived static buffers. But there is no way to detect the long lived from short lived ones yet. A good heuristic would be buffer size.
2009-12-11svga: Keep tight control of texture handle ownership.José Fonseca
The texture owns the surface handle. All derivatives need to keep a reference to texture. This fixes several assertions failures starting up Jedi Knight 2. Should cause no change for DRM surface sharing -- reference count still done as before there.
2009-12-11svga: Fix mixed signed comparisons.José Fonseca
2009-12-11scons: Pass -fno-strict-aliasing to gcc.José Fonseca
Strict aliasing tule violations were fixed on master, but they're still causing problem in this branch, so disable this assumptions. Do not apply this fix to master (revert when you merge).
2009-12-11scons: Make it work with MinGW build of LLVM 2.6.José Fonseca
LLVM 2.5 is no longer supported on windows.
2009-12-10mesa: Initialize variable in MatchInstruction.Vinson Lee
2009-12-10mesa: Assign _mesa_lookup_parameter_index return value to GLint.Vinson Lee
2009-12-10i915: Add missing break statement in i915_debug_packet.Vinson Lee
2009-12-10glsl: Increase size of array in_slang_lookup_constant from 4 to 16.Vinson Lee
For some cases, _mesa_GetIntegerv reads up to params[15].
2009-12-10progs/samples: Byte swap individual members of struct _rawImageRec.Vinson Lee
2009-12-10intel: Remove ARGB internal_format == GL_RGB hacksIan Romanick
Now that XRGB is supported, we don't need to hack around cases of an RGBA format buffer with an internal format of GL_RGB.
2009-12-10intel: Make RGB textures use XRGB8888Ian Romanick
2009-12-10intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system buffers.Ian Romanick
2009-12-10i965: Fix handling of drawing to MESA_FORMAT_XRGB8888Ian Romanick
It turns out that 965 and friends cannot actually render to an xRGB surfaces. Instead, the surface has to be RGBA with writes to alpha disabled and the blend function modified to always use 1.0 for destination alpha.
2009-12-10intel: Use spantmp2 GL_BGR / GL_UNSIGNED_INT_8_8_8_8_REV for XRGB8888Ian Romanick
2009-12-10spantmp2: Add support for GL_BGR / GL_UNSIGNED_INT_8_8_8_8_REVIan Romanick
This is really for MESA_FORMAT_XRGB8888. Clearly spantmp2.h needs some re-work. Any volunteers?
2009-12-10intel: name in intel_create_renderbuffer was always 0, removeIan Romanick
2009-12-10intel: Use texformat accessor to get bytes-per-pixelIan Romanick