summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2007-10-25tex commentsBrian
2007-10-25added some commentsBrian
2007-10-25update TILE_TOP/BOTTOM_* values to match softpipeBrian
2007-10-25s/GLfloat/float/, s/GLint/int/, etcBrian
2007-10-25Briefly describe the buffer management interface.José Fonseca
2007-10-25LLVM requires linking with the C++ compiler.Michel Dänzer
It's basically luck if it works with the C compiler on some platforms...
2007-10-25Implement loopsZack Rusin
2007-10-25Fix nested swizzles. Actually fetch the destination contentsZack Rusin
instead of input.
2007-10-25Fix nested conditionalsZack Rusin
2007-10-25Implement else ops.Zack Rusin
2007-10-25set vcache.referenced bit alwayskeithw
2007-10-24Make branching work :) Simply allow output variables as validZack Rusin
operand inputs when they've been assigned already.
2007-10-24Simplify branch handling. Prepare for proper decleration extraction.Zack Rusin
2007-10-24Fix glDrawElements + VBO rendering when ptr/offset is not zero.Brian
When an index VBO is bound, glDrawElement's indices pointer is really an offset into the element buffer. Add that offset to the prims[i].start value before calling pipe->draw_elements(). Fixes vbo.c conform test.
2007-10-24Revert "Undo indexOffset change (I think, git???)"Brian
This reverts commit 11ce6244a79106c592364b30434b6ddade3fd6bb.
2007-10-24Undo indexOffset change (I think, git???)Brian
2007-10-24add to gitBrian
2007-10-24Implement gl_PointCoord attribute for GLSL fragment shaders.Brian
Contains the normalized fragment position within a point sprite.
2007-10-24print CAL labelBrian
2007-10-24fix bug in RET codeBrian
2007-10-24better debug outputBrian
2007-10-24a bit more work for optimizing clears in tile cache (not enabled yet)Brian
2007-10-24flush pipe in draw_stencil_pixels()Brian
2007-10-24get_tile() for z16, z32, s8z24 surfaces needs to return 4 floats per pixel ↵Brian
(for depth texture sampling)
2007-10-24added a pipe->flush() call in xmesa_clear()Brian
2007-10-24Add copyright headers and do some cleanups.Zack Rusin
2007-10-24Remove the silly function and remove the bogus comment.Zack Rusin
2007-10-24Cleanup some code.Zack Rusin
2007-10-24Implement arl, lerp opcodes and do a first stab at if/endifZack Rusin
handling and branching support.
2007-10-24Implement cross product and abs opcodeZack Rusin
2007-10-24Implement extended swizzling.Zack Rusin
2007-10-24Implement SGE and SLTZack Rusin
2007-10-24Introduce linux-llvm target. Remove the llvm code from the default build for ↵Zack Rusin
now. Cleanup some of the debugging output.
2007-10-24Align the load/stores. Reduce the amount of debugging output.Zack Rusin
2007-10-24Cleanup some of the debugging output codeZack Rusin
2007-10-24Make lit work but in a very lame way - will have to be rewritten.Zack Rusin
2007-10-24Muchos fixos. gears kinda works. and cases don't crash.Zack Rusin
glorious
2007-10-24implement min and maxZack Rusin
2007-10-24Fix some warnings and implement lg2Zack Rusin
2007-10-24Implement frc and floorZack Rusin
2007-10-24Implement ex2 opcodeZack Rusin
2007-10-24Implement dst opcodeZack Rusin
2007-10-24Implement dph opcodeZack Rusin
2007-10-24Implement dot4 opcodeZack Rusin
2007-10-24Implement pow/rcp and sub opcodesZack Rusin
2007-10-24Add the "add" opcode and assert one vp if an opcode isn't supportedZack Rusin
2007-10-24Refactor the tgsi->llvm storage translatorZack Rusin
2007-10-24Implement basic opcode translation and storage translation.Zack Rusin
2007-10-24Draw first triangle. Start on the llvm builder.Zack Rusin
2007-10-24Cleanup some of the testing code. Implement first pass at actuallyZack Rusin
running shaders in llvm.