Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-09-18 | Finishing up rename of the setup state to the rasterizer state. | Zack Rusin | |
2007-09-18 | move cso cache to the pipe directory | Zack Rusin | |
2007-09-18 | Combing depth and stencil objects and making them immutable. | Zack Rusin | |
Converting depth and stencil objects into a single state object (d3d10 like) and making it immutable. | |||
2007-09-18 | Implementing a better hash, removing state_tracker dependency from the cache. | Zack Rusin | |
Replacing mesa's main hash with one that handles collisions, moving state_tracker related caching to the state tracker to keep cso cache independent of it. Cleanups. | |||
2007-09-18 | First stab at immutable state objects (create/bind/delete) | Zack Rusin | |
We want our state objects to be immutable, handled via the create/bind/delete calls instead of struct propagation. Only implementing the blend state to see how it would look like and work. | |||
2007-09-17 | Plug in selection/feedback code. | Brian | |
Not quite finished yet. Selection/feedback are done with a private instance of the 'draw' module in the state tracker. Not quite all the draw context's state is set yet, namely vertex format info. Hold off on that for a bit... | |||
2007-09-10 | s/xm_softpipe.c/xm_winsys.c/ | Brian | |
2007-09-10 | added st_cb_rasterpos.c | Brian | |
2007-09-06 | Initial work for post-transformed vertex feedback buffers. | Brian | |
This will be used for: GL_NV_transform_feedback, or similar GL3 functionality glRasterPos GL selection/feedback modes | |||
2007-09-06 | Move guts of glRasterPos down into T&L module. | Brian | |
2007-08-30 | Consolidate vertex-related code in new draw_vertex.c | Brian | |
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() | |||
2007-08-27 | Split out vertex shader/cache/fetch functionality from draw_prim.c | Keith Whitwell | |
2007-08-25 | checkpoint in constant tracking rework | Keith Whitwell | |
2007-08-24 | Add tgsi_sse2. | michal | |
2007-08-24 | Fixup include paths after rename | Keith Whitwell | |
2007-08-22 | Add deco_caps.c. | michal | |
2007-08-20 | Start to remove the temporary draw_vb() and draw_vertices() code. | Brian | |
new st_draw_vertices() utility used by glClear and glDrawPixels | |||
2007-08-20 | Move guts of vertex array drawing into the 'draw' module. | Brian | |
2007-08-16 | Drawing code refactoring. | Brian | |
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. | |||
2007-08-11 | added st_cb_queryobj.c | Brian | |
2007-08-10 | Move string functions to state_tracker, add queries to pipe, winsys. | Keith Whitwell | |
2007-08-10 | Handle glFlush/glFinish through the state tracker. | Keith Whitwell | |
2007-08-10 | added st_cb_readpixels.c | Brian | |
2007-08-10 | rename st_cb_teximage.h st_format.h | Brian | |
2007-08-07 | added st_atom_texture.c | Brian | |
2007-08-07 | s/pipe_texture_object/pipe_mipmap_tree/, drop st_texobj.c | Brian | |
2007-08-06 | added xm_softpipe.c | Brian | |
2007-08-06 | added st_cb_texture.c | Brian | |
2007-08-06 | Lift intel_mipmap_tree.c to st_mipmap_tree.c | Brian | |
2007-08-06 | Add pipe buffer managment functions. | Keith Whitwell | |
The state_tracker driver needs these to implement, eg. pixel buffer objects, vertex buffer objects. | |||
2007-08-03 | added st_cb_fbo.c | Brian | |
2007-08-02 | hook in teximage bits | Brian | |
2007-08-02 | added st_cb_drawpixels.c | Brian | |
2007-08-02 | Reroute some clear functionality. | Keith Whitwell | |
Still require the intelClear() call to flush batchbuffers. That will be removed later... | |||
2007-08-01 | Build libsoftpipe.a | Keith Whitwell | |
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. | |||
2007-07-31 | Redesign pipe_surface in terms of pipe_region. | Brian | |
struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now. | |||
2007-07-30 | Lots of improvements to the surface-related code. | Brian | |
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. | |||
2007-07-19 | Trigger tgsi compilation for fragment programs. | Keith Whitwell | |
Not sure the generated program looks correct though... | |||
2007-07-13 | Implement AA points and AA coverage application in quad pipeline. | Brian | |
2007-07-13 | Added basic occlusion counting | Brian | |
2007-07-12 | Add a quad 'bufloop' stage to handle glDrawBuffer(GL_FRONT_AND_BACK). | Brian | |
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. | |||
2007-07-12 | Added colormask, dither, multisample state. Implement colormasking stage. | Brian | |
2007-07-11 | Implement polygon stipple state tracking, application. | Brian | |
2007-07-10 | Begin hooking up stenciling. | Brian | |
2007-07-09 | New 'draw' module for primitive drawing (clipping, culling, etc). | Brian | |
2007-07-05 | Softpipe: import TGSI tree. Not hooked-up yet. | michal | |
2007-06-29 | texture object construction | Brian | |
2007-06-26 | consolidate point/line state into pipe_setup_state | Brian | |
2007-06-22 | more texture sampler work | Brian | |
2007-06-21 | alpha test and misc changes | Brian | |