Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-15 | In softpipe_set_viewport() use ordinary (struct) assignment to update ↵ | Brian | |
softpipe->viewport. The previous memcpy() was incorrect since it only copied 4 bytes instead of 32. With struct assignment we avoid data size errors. | |||
2007-06-15 | initial framebuffer state | Brian | |
2007-06-15 | framebuffer state | Brian | |
2007-06-14 | Rename directories again?! | Keith Whitwell | |
Some git wierdness going on. | |||
2007-06-14 | Renamed softpipe directories and files to something less confusing. | Keith Whitwell | |
softpipe/state_tracker --> state_tracker/ softpipe/ --> pipe/ softpipe/generic --> pipe/softpipe/ I don't think pipe is a great name, but I disliked all the others too. Luckily it's fairly easy to rename with git, so this can be revisited later. | |||
2007-06-14 | Small optimization for line drawing. | Keith Whitwell | |
And some comments on point sprites. | |||
2007-06-14 | Remove some dead code. | Keith Whitwell | |
2007-06-12 | simple line drawing code | Brian | |
2007-05-30 | added st_atom_depth.c | Brian | |
2007-05-30 | sketch out texture sampler state | Brian | |
2007-05-30 | comments, clean-up, alphabetize members | Brian | |
2007-05-30 | added depth(Z) state support | Brian | |
2007-05-30 | depth(Z) state | Brian | |
2007-05-28 | implement point rendering | Brian | |
2007-05-25 | INLINE goes before the function's return type | Brian | |
2007-05-25 | Add some comments to explain things, code clarifications. | Brian | |
Also, add quad.facing field for front/back facing. See comments for details. | |||
2007-05-24 | use GLubyte for stencil ref/mask/clear | Brian | |
2007-05-24 | Stencil state. | Brian | |
2007-05-24 | added st_atom_blend.c, st_atom_scissor.c | Brian | |
2007-05-24 | Implement blend state | Brian | |
2007-05-24 | #ifndef SP_DEFINES_H protection, copyright | Brian | |
2007-05-24 | scissor depends on glScissor() and framebuffer size | Brian | |
2007-05-24 | add scissor state | Brian | |
2007-05-24 | scissor state | Brian | |
2007-05-24 | define, use SP_MAX_CLIP_PLANES | Brian | |
2007-05-24 | Add the vf module. | Keith Whitwell | |
This is a cleaned up version of the code in tnl/t_vertex*. | |||
2007-05-24 | Use the x11 driver as a test harness for the softpipe/state_tracker code. | Keith Whitwell | |
This has some limitations as we currently require a mapped framebuffer, so it only really works with double-buffered ximage rgba8888 windows. | |||
2007-05-24 | First version of the softpipe rasterizer. | Keith Whitwell | |
This will flesh out to hopefully acheive 3 things: - New software rasterizer for mesa - New driver model for mesa & dri with much smaller drivers - The basis for the cell driver. It's got a long way to go yet, but will at least run trivial/tri.c. | |||
2007-05-14 | master/trunk is now for Mesa 7.1 devel: bump versions | Brian | |
2007-05-14 | comment about fixing uniform structs | Brian | |
2007-05-13 | r300: Enable the non-user-buffers code to compile. | Oliver McFadden | |
2007-05-13 | r300: Use e32(0x0) rather than e32(0); makes greping for hex values easier. | Oliver McFadden | |
2007-05-13 | r300: Use the defined values when writing to R300_RS_ROUTE_0. | Oliver McFadden | |
2007-05-13 | r300: Use the defined values when writing to R300_SE_VTE_CNTL. | Oliver McFadden | |
You can verify this is correct with the following code. assert (0x043f == (R300_VTX_W0_FMT | R300_VPORT_X_SCALE_ENA | R300_VPORT_X_OFFSET_ENA | R300_VPORT_Y_SCALE_ENA | R300_VPORT_Y_OFFSET_ENA | R300_VPORT_Z_SCALE_ENA | R300_VPORT_Z_OFFSET_ENA)); | |||
2007-05-13 | r300: Added a TODO comment for the R300_VAP_INPUT_ROUTE_[01]_0 values. | Oliver McFadden | |
2007-05-13 | r300: Changed some more functions to static functions. | Oliver McFadden | |
This required reordering some of the functions which is why the diff is a little larger. | |||
2007-05-13 | r300: Changed a couple of functions in r300_state.c to static functions. | Oliver McFadden | |
2007-05-13 | r300: Removed the unused r300_aos_rec (replaced by r300_dma_region) structure. | Oliver McFadden | |
2007-05-13 | r300: Use #if 0 for disabled code, rather than commenting it out. | Oliver McFadden | |
2007-05-13 | r300: Removed a couple of obsolete/commented out includes. | Oliver McFadden | |
2007-05-13 | r300: A few very minor indenting corrections. | Oliver McFadden | |
2007-05-13 | r300: Use the defined values for the interpolater (interp_magic) magic values. | Oliver McFadden | |
2007-05-13 | r300: Use the defined values when writing to R300_VAP_INPUT_CNTL_[01]. | Oliver McFadden | |
You can verify this is correct with the following code. assert (0x00000001 == R300_INPUT_CNTL_0_COLOR); assert (0x00000405 == (R300_INPUT_CNTL_POS | R300_INPUT_CNTL_COLOR | R300_INPUT_CNTL_TC0)); | |||
2007-05-12 | Revert "r300: Perform the locking closer to the DRM texture upload call." | Oliver McFadden | |
This reverts commit 93881edb46fc95e1cfb4ded4e8a5db92612d3e4d. | |||
2007-05-12 | bring over recent radeonMakeCurrent fixes for r300 to radeon/r200 | Roland Scheidegger | |
2007-05-12 | r300: Removed the name argument to ALLOC_STATE; do the name via the macro. | Oliver McFadden | |
2007-05-12 | r300: Renamed r300DoEmitState to r300EmitAtoms. | Oliver McFadden | |
2007-05-12 | r300: Perform the locking closer to the DRM texture upload call. | Oliver McFadden | |
This might help if with attaching GDB if the driver gets into a -EAGAIN loop. | |||
2007-05-11 | r300: Removed unused FORCE_32BITS_ELTS define. | Oliver McFadden | |
2007-05-11 | r300: Removed the unused CPT macro. | Oliver McFadden | |