summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-18Merge commit 'origin/master' into gallium-0.2Keith Whitwell
Conflicts: progs/trivial/Makefile src/mesa/glapi/glthread.c
2008-09-18mesa: bring sources into line with sources.mak, but omit gallium codeKeith Whitwell
2008-09-18dri/swrast: fix swapBuffers after dri2George Sapountzis
2008-09-18i965: Add support for G41 chipset which is another 4 series.Xiang, Haihao
2008-09-18cell: Fix bug with complement logic for SGE and SLEJonathan White
2008-09-18cell: Added SGE and SLE instructions to dispatch functionJonathan White
2008-09-18cell: Added SGE and SLE instructionsJonathan White
2008-09-18CELL: finish fragment ops blending (except for unusual D3D modes)Robert Ellison
- Added new "macro" functions spe_float_min() and spe_float_max() to rtasm_ppc_spe.{ch}. These emit instructions that cause the minimum or maximum of each element in a vector of floats to be saved in the destination register. - Major changes to cell_gen_fragment.c to implement all the blending modes (except for the mysterious D3D-based PIPE_BLENDFACTOR_SRC1_COLOR, PIPE_BLENDFACTOR_SRC1_ALPHA, PIPE_BLENDFACTOR_INV_SRC1_COLOR, and PIPE_BLENDFACTOR_INV_SRC1_ALPHA). - Some revamping of code in cell_gen_fragment.c: use the new spe_float_min() and spe_float_max() functions (instead of expanding these calculations inline via macros); create and use an inline utility function for handling "optional" register allocation (for the {1,1,1,1} vector, and the blend color vectors) instead of expanding with macros; use the Float Multiply and Subtract (fnms) instruction to simplify and optimize many blending calculations.
2008-09-17mesa: fix bug in previous changes to _slang_resolve_attributes()Brian Paul
2008-09-17cell: example of doing fs/fm sequence with fnms in blendingBrian Paul
2008-09-17cell: dump generated code if CELL_DEBUG=asmBrian Paul
2008-09-17CELL: fleshing out the blending fragment opsRobert Ellison
- Added two new debug flags (to be used with the CELL_DEBUG environment variable). The first, "CELL_DEBUG=fragops", activates SPE fragment ops debug messages. The second, "CELL_DEBUG=fragopfallback", will eventually be used to disable the use of generated SPE code for fragment ops in favor of the default fallback reference routine. (During development, though, the parity of this flag is reversed: all users will get the reference code *unless* CELL_DEBUG=fragopfallback is set. This will prevent hiccups in code generation from affecting the other developers.) - Formalized debug message usage and macros in spu/spu_main.c. - Added lots of new code to ppu/cell_gen_fragment.c to extend the number of supported source RGB factors from 4 to 15, and to complete the list of supported blend equations. More coming, to complete the source and destination RGB and alpha factors, and to complete the rest of the fragment operations...
2008-09-16intel: Destroy bufmgr in screen destroy, not context.Eric Anholt
Caused server crashes on second context creation since 7e0bbdcf033981282978554c2e68ce48b55aa291. Bug #17600.
2008-09-16mesa: rework GLSL vertex attribute bindingBrian Paul
Calls to glBindAttribLocation() should not take effect until the next time that glLinkProgram() is called. gl_shader_program::Attributes now just contains user-defined bindings. gl_shader_program::VertexProgram->Attributes contains the actual/final bindings.
2008-09-16cell: Added RCP and RSQ instruction support.Jonathan White
2008-09-16cell: Added DP3 and DP4 instructionsJonathan White
2008-09-16mesa: fix display list regression (check if save->prim_count > 0 in ↵Brian Paul
vbo_save_EndList())
2008-09-16st: hash-warning not recognised on Windows.Michal Krol
2008-09-16cell: Optimized LERP with fmaJonathan White
Please enter the commit message for your changes.
2008-09-16cell: Fixed MIN/MAX algorithmJonathan White
2008-09-15cell: export CELL_DEBUG=asm to dump SPU assembly codeBrian Paul
2008-09-15mesa: fix MSAA enable state in update_multisample()Brian Paul
2008-09-15cell: Added LERP instructionJonathan White
2008-09-15gallium: emit SPU instructions in assembler-compatible syntaxBrian Paul
2008-09-15cell: Added support for SLT, SEQ and SNE instructionsJonathan White
2008-09-15cell: Added support for ABS instructionJonathan White
2008-09-15Added support for SUB and MAD instructionsJonathan White
2008-09-15Fixed emit_RRRJonathan White
2008-09-15i915simple: dri winsys does now compile and worksJakob Bornecrantz
Glxgears hits an assert, but tri works
2008-09-15mesa: remove some assertions that are invalid during context tear-downBrian Paul
2008-09-15mesa: get another class of degenerate dlists workingKeith Whitwell
Primitive begin in one dlist, end in another.
2008-09-15add dlist-degenerate test caseKeith Whitwell
2008-09-14glut: s/glut_fbc.c/glut_fcb.c/Shane Blackett
2008-09-14draw: Silence compiler warnings on Windows.Michal Krol
2008-09-13cell: implement negation, absolute value and set-sign for src regs in code genBrian Paul
2008-09-13negate.txt - test negation of a src regBrian Paul
2008-09-13gallium: add another value check to util_fast_pow()Brian Paul
Fixes glitches seen in morph3d demo.
2008-09-13tdfx: fix crash and lack of visuals bugJakub Bogusz
2008-09-13i915: fix himask constant init for 64-bit buildGuillaume Melquiond
2008-09-13glx: fix 64-bit datatype issueGuillaume Melquiond
2008-09-13mesa: return after _mesa_problem() callsGuillaume Melquiond
2008-09-13mesa: #include <stdio.h>Guillaume Melquiond
2008-09-13remove invalid XDestroyWindow() callGuillaume Melquiond
2008-09-13silence warningGuillaume Melquiond
2008-09-13GLU: fix asst warningsGuillaume Melquiond
2008-09-12cell: remove old disassembly/dump code; use dumper code in SPE emitter.Brian Paul
2008-09-12gallium: added print/dump code to SPE code emitterBrian Paul
2008-09-12cell: implement DDX/DDY codegen (untested)Brian Paul
2008-09-12gallium: added spe_splat_word()Brian Paul
2008-09-12cell: implement TGSI immediates in SPE code generatorBrian Paul