Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | s/xm_softpipe.c/xm_winsys.c/ | Brian | 2007-09-10 | 1 | -1/+1 |
| | |||||
* | added st_cb_rasterpos.c | Brian | 2007-09-10 | 1 | -0/+1 |
| | |||||
* | Initial work for post-transformed vertex feedback buffers. | Brian | 2007-09-06 | 1 | -0/+1 |
| | | | | | | | This will be used for: GL_NV_transform_feedback, or similar GL3 functionality glRasterPos GL selection/feedback modes | ||||
* | Move guts of glRasterPos down into T&L module. | Brian | 2007-09-06 | 1 | -0/+1 |
| | |||||
* | Consolidate vertex-related code in new draw_vertex.c | Brian | 2007-08-30 | 1 | -0/+1 |
| | | | | | | | A few functions which were basically duplicated between softpipe and the i915 driver are now re-used: draw_emit_vertex_attr() draw_compute_vertex_size() | ||||
* | Split out vertex shader/cache/fetch functionality from draw_prim.c | Keith Whitwell | 2007-08-27 | 1 | -0/+3 |
| | |||||
* | checkpoint in constant tracking rework | Keith Whitwell | 2007-08-25 | 1 | -2/+4 |
| | |||||
* | Add tgsi_sse2. | michal | 2007-08-24 | 1 | -2/+3 |
| | |||||
* | Fixup include paths after rename | Keith Whitwell | 2007-08-24 | 1 | -5/+5 |
| | |||||
* | Add deco_caps.c. | michal | 2007-08-22 | 1 | -0/+4 |
| | |||||
* | Start to remove the temporary draw_vb() and draw_vertices() code. | Brian | 2007-08-20 | 1 | -2/+1 |
| | | | | new st_draw_vertices() utility used by glClear and glDrawPixels | ||||
* | Move guts of vertex array drawing into the 'draw' module. | Brian | 2007-08-20 | 1 | -0/+1 |
| | |||||
* | Drawing code refactoring. | Brian | 2007-08-16 | 1 | -0/+1 |
| | | | | | Move code duplicated between draw_vb.c and sp_draw_arrays.c into draw_prim.c draw_vb.c will eventually go away, but this seems like a good step anyway. | ||||
* | added st_cb_queryobj.c | Brian | 2007-08-11 | 1 | -0/+1 |
| | |||||
* | Move string functions to state_tracker, add queries to pipe, winsys. | Keith Whitwell | 2007-08-10 | 1 | -0/+1 |
| | |||||
* | Handle glFlush/glFinish through the state tracker. | Keith Whitwell | 2007-08-10 | 1 | -0/+1 |
| | |||||
* | added st_cb_readpixels.c | Brian | 2007-08-10 | 1 | -1/+2 |
| | |||||
* | rename st_cb_teximage.h st_format.h | Brian | 2007-08-10 | 1 | -2/+2 |
| | |||||
* | added st_atom_texture.c | Brian | 2007-08-07 | 1 | -0/+1 |
| | |||||
* | s/pipe_texture_object/pipe_mipmap_tree/, drop st_texobj.c | Brian | 2007-08-07 | 1 | -2/+1 |
| | |||||
* | added xm_softpipe.c | Brian | 2007-08-06 | 1 | -0/+1 |
| | |||||
* | added st_cb_texture.c | Brian | 2007-08-06 | 1 | -0/+1 |
| | |||||
* | Lift intel_mipmap_tree.c to st_mipmap_tree.c | Brian | 2007-08-06 | 1 | -0/+1 |
| | |||||
* | Add pipe buffer managment functions. | Keith Whitwell | 2007-08-06 | 1 | -0/+1 |
| | | | | | The state_tracker driver needs these to implement, eg. pixel buffer objects, vertex buffer objects. | ||||
* | added st_cb_fbo.c | Brian | 2007-08-03 | 1 | -0/+1 |
| | |||||
* | hook in teximage bits | Brian | 2007-08-02 | 1 | -0/+1 |
| | |||||
* | added st_cb_drawpixels.c | Brian | 2007-08-02 | 1 | -0/+1 |
| | |||||
* | Reroute some clear functionality. | Keith Whitwell | 2007-08-02 | 1 | -0/+1 |
| | | | | | Still require the intelClear() call to flush batchbuffers. That will be removed later... | ||||
* | Build libsoftpipe.a | Keith Whitwell | 2007-08-01 | 1 | -26/+0 |
| | | | | | | | | Each pipe driver will build to a .a library, as these will optionally be included in the various DRI drivers (this will make more sense once there is at least one hardware driver...). Not strictly necessary for softpipe, but want to minimize the differences between it and actual hw implementations. | ||||
* | Redesign pipe_surface in terms of pipe_region. | Brian | 2007-07-31 | 1 | -1/+2 |
| | | | | | | struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now. | ||||
* | Lots of improvements to the surface-related code. | Brian | 2007-07-30 | 1 | -0/+1 |
| | | | | | | Z testing now works with i915 driver. Add gl_renderbuffer::surface pointer (and reverse pointer). Remove intel_surface and xmesa_surface types - no longer used. | ||||
* | Trigger tgsi compilation for fragment programs. | Keith Whitwell | 2007-07-19 | 1 | -0/+1 |
| | | | | Not sure the generated program looks correct though... | ||||
* | Implement AA points and AA coverage application in quad pipeline. | Brian | 2007-07-13 | 1 | -0/+1 |
| | |||||
* | Added basic occlusion counting | Brian | 2007-07-13 | 1 | -0/+1 |
| | |||||
* | Add a quad 'bufloop' stage to handle glDrawBuffer(GL_FRONT_AND_BACK). | Brian | 2007-07-12 | 1 | -0/+1 |
| | | | | | This removes the notion of multiple color buffers from all other stages. Will need a bit more work when shaders with multiple render targets arrive. | ||||
* | Added colormask, dither, multisample state. Implement colormasking stage. | Brian | 2007-07-12 | 1 | -0/+1 |
| | |||||
* | Implement polygon stipple state tracking, application. | Brian | 2007-07-11 | 1 | -0/+2 |
| | |||||
* | Begin hooking up stenciling. | Brian | 2007-07-10 | 1 | -0/+1 |
| | |||||
* | New 'draw' module for primitive drawing (clipping, culling, etc). | Brian | 2007-07-09 | 1 | -9/+13 |
| | |||||
* | Softpipe: import TGSI tree. Not hooked-up yet. | michal | 2007-07-05 | 1 | -3/+16 |
| | |||||
* | texture object construction | Brian | 2007-06-29 | 1 | -1/+2 |
| | |||||
* | consolidate point/line state into pipe_setup_state | Brian | 2007-06-26 | 1 | -4/+2 |
| | |||||
* | more texture sampler work | Brian | 2007-06-22 | 1 | -0/+2 |
| | |||||
* | alpha test and misc changes | Brian | 2007-06-21 | 1 | -0/+1 |
| | |||||
* | s/tile/quad/ | Brian | 2007-06-20 | 1 | -6/+6 |
| | |||||
* | quad blending works now, but many blend terms need to be added in blend_quad(). | Brian | 2007-06-20 | 1 | -0/+1 |
| | |||||
* | Initial implementation of a software pipeline for quad rasterization ↵ | Brian | 2007-06-20 | 1 | -0/+3 |
| | | | | | | (fragment ops). This is very much like the clipper/setup pipeline for primitives. | ||||
* | Initial work for glClear(), clear color state. | Brian | 2007-06-20 | 1 | -0/+2 |
| | |||||
* | hook up point state | Brian | 2007-06-19 | 1 | -0/+2 |
| | |||||
* | Re-org of surface/framebuffer state. | Brian | 2007-06-19 | 1 | -4/+0 |
| | | | | We should be able to render to any depth/format of X window now. |