Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-10 | llvmpipe: initial mrt support | Keith Whitwell | |
Non-mrt apps work, and the code looks correct, but not many mrt test apps handy atm... | |||
2010-01-08 | Merge remote branch 'origin/master' into lp-binning | José Fonseca | |
Conflicts: src/gallium/auxiliary/util/u_surface.c src/gallium/drivers/llvmpipe/Makefile src/gallium/drivers/llvmpipe/SConscript src/gallium/drivers/llvmpipe/lp_bld_arit.c src/gallium/drivers/llvmpipe/lp_bld_flow.c src/gallium/drivers/llvmpipe/lp_bld_interp.c src/gallium/drivers/llvmpipe/lp_clear.c src/gallium/drivers/llvmpipe/lp_context.c src/gallium/drivers/llvmpipe/lp_context.h src/gallium/drivers/llvmpipe/lp_draw_arrays.c src/gallium/drivers/llvmpipe/lp_jit.c src/gallium/drivers/llvmpipe/lp_jit.h src/gallium/drivers/llvmpipe/lp_prim_vbuf.c src/gallium/drivers/llvmpipe/lp_setup.c src/gallium/drivers/llvmpipe/lp_setup_point.c src/gallium/drivers/llvmpipe/lp_state.h src/gallium/drivers/llvmpipe/lp_state_blend.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.c src/gallium/drivers/llvmpipe/lp_state_sampler.c src/gallium/drivers/llvmpipe/lp_state_surface.c src/gallium/drivers/llvmpipe/lp_tex_cache.c src/gallium/drivers/llvmpipe/lp_tex_cache.h src/gallium/drivers/llvmpipe/lp_tex_sample.h src/gallium/drivers/llvmpipe/lp_tile_cache.c | |||
2010-01-06 | llvmpipe: fix double free | Keith Whitwell | |
2010-01-06 | llvmpipe: merge setup and draw vbuf submodules | Keith Whitwell | |
The setup tiling engine is now plugged directly into the draw module as a rendering backend. Removed a couple of layering violations such that the setup code no longer reaches out into the surrounding llvmpipe state or context. | |||
2009-12-17 | Move the remaining format pf_get_* functions to u_format.h. | Michal Krol | |
Previously they depended on format blocks, but after removing those they started depending on format encoding. | |||
2009-12-17 | llvmpipe: keep copy of framebuffer state in setup context | Keith Whitwell | |
Avoids crashes when first frame is rendered before window is mapped. Avoids potential issue where fb state is changed before setup context is flushed. | |||
2009-12-13 | llvmpipe: rename bins to scene | Keith Whitwell | |
It was pretty confusing having an entity named "bin" and another named "bins", not least because sometimes there was a need to talk about >1 of the "bins" objects, which couldn't be pluralized any further... Scene is a term used in a bunch of places to talk about what a binner operates on, so it's a decent choice here. | |||
2009-12-12 | llvmpipe: rename queue size to count | Keith Whitwell | |
2009-12-12 | llvmpipe: rename one of the two rasterize_bins functions | Keith Whitwell | |
2009-12-11 | llvmpipe: checkpoint: plug in the new fencing code | Brian Paul | |
This has only been very lightly tested. More work to come. | |||
2009-12-10 | llvmpipe: updated comment | Brian Paul | |
2009-12-09 | llvmpipe: simplify the tiles_x, tiles_y code a bit | Brian Paul | |
2009-12-09 | llvmpipe: use the empty_bins queue now | Brian Paul | |
2009-12-09 | llvmpipe: checkpoint: begin plugging in bin queue code | Brian Paul | |
2009-12-09 | llvmpipe: use new lp_setup_get_current_bins() function | Brian Paul | |
This stub function will interface to the queue system... | |||
2009-12-04 | llvmpipe: still more bin code reorganization | Brian Paul | |
Move tiles_x,y fields from setup state into bin state. Move more bin-adding commands into lp_bin.[ch]. | |||
2009-12-04 | llvmpipe: remove dead code left over from a previous commit | Brian Paul | |
2009-12-04 | llvmpipe: reorganization of binning data structions and funtions | Brian Paul | |
New lp_bins struct contains all bin information. More move bin-related code into lp_bin.[ch] Use new/updated bin-access functions to hide implementation details. The result is more/cleaner separation between the setup and rast components. This will make double-buffering of the bins easier, etc. | |||
2009-12-04 | llvmpipe: move lp_rasterize_bin() into lp_rast.c | Brian Paul | |
First step of moving bin rasterization/execution code out of lp_setup.c | |||
2009-12-04 | llvmpipe: simplify framebuffer state code | Brian Paul | |
2009-12-04 | llvmpipe: use LP_DBG() macro everywhere | Brian Paul | |
2009-12-04 | llvmpipe: move bin-related structures and functions into new lp_bin.[ch] | Brian Paul | |
And put lp_ prefixes on some functions. | |||
2009-12-04 | llvmpipe: bin state-change commands | Brian Paul | |
Previously, each triangle had a pointer to the state to use for shading. Now we insert state-change commands into the bins. When we execute one of those commands we just update a 'current state' pointer and use that pointer when calling the jit shader. When inserting state-change commands into a bin we check if the previous command was also a state-change command and simply replace it. This avoids accumulating useless/redundant state-change commands. | |||
2009-12-04 | llvmpipe: struct cmd_bin | Brian Paul | |
Just introducing a new structure to represent a per-tile bin. | |||
2009-12-03 | llvmpipe: comment about blend color | Brian Paul | |
2009-12-03 | llvmpipe: fix incorrect array indexing when saving blend color | Brian Paul | |
2009-12-03 | llvmpipe: checkpoint some initial state binning code | Brian Paul | |
2009-12-03 | llvmpipe: set LP_SETUP_NEW_FS in lp_setup_set_fs() | Brian Paul | |
Fixes progs/trivial/tri-blend.c, but I think we're just getting lucky in this case. | |||
2009-12-03 | llvmpipe: more debug info | Brian Paul | |
2009-12-02 | gallium: adapt drivers to interface cleanups | Roland Scheidegger | |
2009-11-30 | llvmpipe: minor refactoring of bin rasterization code | Brian Paul | |
2009-11-03 | llvmpipe: remove old prim_setup draw stage | Keith Whitwell | |
Everything now goes through the draw_vbuf handler, the same as regular drivers. Based on Keith's commit 4fe0fc3eba1f79beda890a5016359d549bab6ad4. | |||
2009-11-03 | llvmpipe: Respect gl_rasterization_rules in primitive setup. | José Fonseca | |
Based on Michal's identical commit for softpipe (ca9c413647bf9efb5ed770e3a655bc758075aec7). | |||
2009-10-22 | llvmpipe: Avoid yet another variable size array. | José Fonseca | |
2009-10-21 | llvmpipe: remove one of two definitions of TILESIZE | Keith Whitwell | |
2009-10-19 | llvmpipe: Reset the pointer to stored jit context. | José Fonseca | |
2009-10-19 | llvmpipe: Allocate the blend color from the data store, and ensure it's aligned. | José Fonseca | |
2009-10-18 | llvmpipe: Maintain a copy of the shader constants to prevent clobbering. | José Fonseca | |
2009-10-14 | llvmpipe: Use ALIGN_STACK. | José Fonseca | |
2009-10-09 | llvmpipe: Additional checks for binner block lists. | José Fonseca | |
2009-10-09 | llvmpipe: Get jit_context/jit_function across the rasterizer. | José Fonseca | |
2009-10-09 | llvmpipe: set block count/used values back to zero on reset | Keith Whitwell | |
2009-10-09 | llvmpipe: always call begin_binning on transition to active state | Keith Whitwell | |
2009-10-09 | llvmpipe: initialize setup data store | Keith Whitwell | |
2009-10-09 | llvmpipe: initialize setup line/tri/point funcs | Keith Whitwell | |
2009-10-09 | llvmpipe: Put jit_context in store. | José Fonseca | |
2009-10-09 | llvmpipe: trivial/clear works | Keith Whitwell | |
2009-10-09 | llvmpipe: Replace util_pack_color with straight float_to_ubyte. | José Fonseca | |
2009-10-09 | llvmpipe: debug, crash fixes | Keith Whitwell | |
2009-10-09 | llvmpipe: fix crash on init | Keith Whitwell | |