Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-05 | Determine GL extensions/limits by making pipe queries. | Brian | |
The state tracker calls pipe->get_param() to determine the GL limits and which OpenGL extensions are supported. This is an initial implementation that'll probably change... | |||
2007-11-05 | move st_create_framebuffer() to new st_framebuffer.c file | Brian | |
2007-11-02 | Renaming llvmtgsi to gallivm. Taking first steps on the way to supporting | Zack Rusin | |
fragment shaders through llvm. | |||
2007-11-01 | disable/omit renderbuffer span code | Brian | |
2007-10-31 | remove xm_dd.c from build | Brian | |
2007-10-31 | omit X point/line/triangle routines | Brian | |
2007-10-31 | switch to Xlib driver in pipe/xlib/ | Brian | |
2007-10-31 | No longer need st_update_tnl atom. | Brian | |
2007-10-31 | Use ffvertex_prog.c code instead of t_vp_build.c code. | Brian | |
2007-10-30 | added prog_cache.c | Brian | |
2007-10-30 | Rename file since it's now a state atom | Brian | |
2007-10-30 | added st_pixeltransfer.c | Brian | |
2007-10-29 | Remove conditionals from the makefiles. | Zack Rusin | |
2007-10-27 | Move mesa_to_tgsi.[ch] to state_tracker | Brian | |
2007-10-24 | Cleanup some code. | Zack Rusin | |
2007-10-24 | Refactor the tgsi->llvm storage translator | Zack Rusin | |
2007-10-24 | Implement basic opcode translation and storage translation. | Zack Rusin | |
2007-10-24 | Implement the conversion and do the initial execution pass. | Zack Rusin | |
2007-10-24 | Initial stab at LLVM integration. | Zack Rusin | |
2007-10-22 | plug the wide prims code into the pipeline | Brian | |
2007-10-18 | added st_debug.c | Brian | |
2007-10-14 | Added accum function/files. | Brian | |
2007-09-27 | Make flushing more lazy in the draw module. | Keith Whitwell | |
2007-09-25 | Translate mesa vertex/fragment programs to TGSI programs at same time to do ↵ | Brian | |
proper linking. Previously, programs were translated independently during validation. The problem is the translation to TGSI format, which packs shader input/outputs into continuous slots, depends on which vertex program is being paired with which fragment shader. Now, we look at the outputs of the vertex program in conjunction with the inputs of the fragment shader to be sure the attributes match up correctly. The new 'linked_program_pair' class keeps track of the associations between vertex and fragment shaders. It's also the place where the TGSI tokens are kept since they're no longer per-program state but per-linkage. Still a few loose ends, like implementing some kind of hash/lookup table for linked_program_pairs. | |||
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 | |