summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-12intel: Add a width field to regions, and use it for making miptrees in TFP.Eric Anholt
Otherwise, we would use the pitch as width of the texture, and compiz would render the pitch padding on the right hand side.
2008-09-12cell: initial support for IF/ELSE/ENDIF in fragment shader codegenBrian Paul
Only one level of if/else/endif nesting is currently working.
2008-09-12cell: evaluate multiple fragment inputsBrian Paul
2008-09-12Finish off the previous fix for TFP.Eric Anholt
A couple of those lines of debug printfs I deleted weren't actually debug printfs.
2008-09-12cell: disable invalid spe_release_func() calls, fixes crash on exitBrian Paul
2008-09-12intel: Don't segfault on TFP from a bad drawable.Eric Anholt
2008-09-12intel: Remove dead allow_batchbuffer param.Eric Anholt
2008-09-12Makefile was previously checked in with merge diffs still present. I just ↵Jonathan White
selected HEAD and removed the old.
2008-09-12mesa: bump gallium version string to 0.2Brian Paul
2008-09-12cell: more documentation updatesBrian Paul
2008-09-12cell: implement colormask on fallback pathBrian Paul
Also, some var renaming and additional comments
2008-09-12gallium: avoid redundant tgsi_exec_machine_bind_shader() calls on draw exec pathBrian Paul
tgsi_exec_machine_bind_shader() isn't cheap so avoiding unecessary calls is a big win. A similar change should be done for softpipe's fragment exec path but extra care needs to be taken with the texture sampler state/params.
2008-09-12gallium: use copy_token() function to avoid type punning/aliasing problemsBrian Paul
This fixes parsing errors seen with optimized builds on PPC (which led to crashes). The memcpy() is heavy-handed, but works. A lighter uint assignment could be used on x86...
2008-09-12cell: fix twiddled tile display for XSHM. Fixed blank window problem.Brian Paul
2008-09-12gallium: use new compare32() function to fix warnings about type punning and ↵Brian Paul
aliasing
2008-09-12gallium: silence warningBrian Paul
2008-09-12cell: fix non-debug build errorBrian Paul
2008-09-12cell: implement swizzling for src regsBrian Paul
2008-09-12cell: setup fragment program inputs in SOA formatBrian Paul
Also remove old code, etc.
2008-09-12simple add with swizzle and mul with swizzle testsBrian Paul
2008-09-12cell: updated docs/statusBrian Paul
2008-09-12gallium: minor optimization to spe_load_int()Brian Paul
2008-09-12gallium: initial PPC/Altivec codegenBrian Paul
2008-09-12cell: update branch info in docsBrian Paul
2008-09-12cell: disable calls to old gen codeBrian Paul
2008-09-12gallium: don't build winsys/ hereBrian Paul
2008-09-12i915simple: A step closer to compilingJakob Bornecrantz
2008-09-12mesa: build gallium directories before core mesaKeith Whitwell
2008-09-12mesa: regenerate shader filesKeith Whitwell
2008-09-12dri/swrast: fix swapBuffers after dri2George Sapountzis
2008-09-12vp: add run scriptKeith Whitwell
2008-09-12Merge commit 'origin/gallium-0.1' into gallium-0.2Keith Whitwell
Conflicts: progs/fp/Makefile
2008-09-12fp: put test name in window title, add run scriptKeith Whitwell
2008-09-12mesa: get fixed-function program generation working againKeith Whitwell
2008-09-12use APP_CC, remove redundant targetKeith Whitwell
2008-09-12i965: Add support for G41 chipset which is another 4 series.Xiang, Haihao
2008-09-11cell: initial support for fragment shader code generation.Brian Paul
TGSI shaders are translated into SPE instructions which are then sent to the SPEs for execution. Only a few opcodes work, no swizzling yet, no support for constants/immediates, etc.
2008-09-11use APP_CCBrian Paul
2008-09-11cell: fix tile twidding bug seen in the event of multiple expose eventsBrian Paul
2008-09-11cell: minor improvements to fragment code-genBrian Paul
2008-09-11gallium: add special cases in spe_load_float(), spe_load_int(), added ↵Brian Paul
spe_splat()
2008-09-11cell: put cell_ prefix on gen_fragment_function()Brian Paul
2008-09-11trivial: remove stray merge conflictKeith Whitwell
2008-09-11st: adapt to new framebuffer struct, with one FIXME outstandingKeith Whitwell
2008-09-11mesa: update PointParameter usageKeith Whitwell
2008-09-11demos: fix LIBS ref in makefileKeith Whitwell
2008-09-11gallium: typo: s/PIPE_FORMAT_Z16UNORM/PIPE_FORMAT_Z16_UNORM/Brian Paul
2008-09-11egl_xdri: Add the top-level lib dir so we link against the libGL we built.Dima Zavin
2008-09-11egl_dri/egl_xdri: Makefiles should use pkg-config to find libdrm.Dima Zavin
2008-09-11xlib: fix typoKeith Whitwell