Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-11 | llvmpipe: added lp_rast_fence() bin function | Brian Paul | |
2009-12-11 | llvmpipe: added lp_rast_get_num_threads() | Brian Paul | |
2009-12-11 | llvmpipe: added lp_bin_get_num_bins() | Brian Paul | |
2009-12-11 | llvmpipe: remove old fence code, compile new lp_fence.c file | Brian Paul | |
2009-12-11 | llvmpipe: initial fence implementation | Brian Paul | |
2009-12-11 | llvmpipe: implement lp_rast_load_color() | Brian Paul | |
2009-12-11 | llvmpipe: checkpoint: more thread/queuing changes | Brian Paul | |
Now mapping/unmapping the framebuffer is done by a rasteizer thread rather than the main calling thread. | |||
2009-12-11 | llvmpipe: remove unused lp_rasterizer::fb field | Brian Paul | |
2009-12-11 | llvmpipe: improve framebuffer/surface code | Brian Paul | |
2009-12-11 | llvmpipe: fix-up #includes | Brian Paul | |
2009-12-11 | llvmpipe: fix inverted util_framebuffer_state_equal() result | Brian Paul | |
2009-12-11 | llvmpipe: remove unused fb parameter | Brian Paul | |
2009-12-11 | llvmpipe: minor comment fix | Brian Paul | |
2009-12-11 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
Conflicts: src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/drivers/dri/intel/intel_span.c | |||
2009-12-11 | svga: Add a missing dependency from the prescale state. | José Fonseca | |
Thanks for Keith to finding this. Fixes Jedi Knight 2 menus. | |||
2009-12-11 | svga: Always pass SVGA3D_SURFACE_HINT_DYNAMIC. | José Fonseca | |
Since we're reusing buffers we're effectively transforming all of them into dynamic buffers. It would be nice to not cache long lived static buffers. But there is no way to detect the long lived from short lived ones yet. A good heuristic would be buffer size. | |||
2009-12-11 | svga: Keep tight control of texture handle ownership. | José Fonseca | |
The texture owns the surface handle. All derivatives need to keep a reference to texture. This fixes several assertions failures starting up Jedi Knight 2. Should cause no change for DRM surface sharing -- reference count still done as before there. | |||
2009-12-11 | svga: Fix mixed signed comparisons. | José Fonseca | |
2009-12-10 | llvmpipe: checkpoint: use empty/full bin queues | Brian Paul | |
2009-12-10 | llvmpipe: updated comment | Brian Paul | |
2009-12-10 | llvmpipe: simplify llvmpipe_set_framebuffer_state() | Brian Paul | |
2009-12-10 | llvmpipe: added some bin queue debug code | Brian Paul | |
2009-12-10 | llvmpipe: updated comments | Brian Paul | |
2009-12-09 | llvmpipe: added some debug/info code | 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 | r300g: fix routing of vertex streams if TCL is bypassed | Marek Olšák | |
Generating mipmaps finally works, among other things. Yay! | |||
2009-12-09 | r300g: always disable unused colorbuffers | Marek Olšák | |
2009-12-09 | r300g: make pow(0,0) return 1 instead of NaN in the R500 fragment shader | Marek Olšák | |
Unfortunately we can't fix this easily in the R300 fragment shader, and it's probably not worth the effort. | |||
2009-12-09 | r300g: clean up r300_emit_aos | Marek Olšák | |
2009-12-09 | llvmpipe: added new lp_bin_queue.[ch] files | Brian Paul | |
The queues will be used for keeping track of full and empty bins so we can overlap setup with the rasterization threads. | |||
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-09 | llvmpipe: more bin functions for create/destroy/queries | Brian Paul | |
2009-12-09 | Revert "Simplify the redundant meaning of format layout." | Michal Krol | |
This reverts commit eb926ddf9eee1095c7fc12013f0b8375bbaeca6f. | |||
2009-12-08 | Simplify the redundant meaning of format layout. | Michal Krol | |
We really just need to know whether the format is compressed or not. For more detailed information format colorspace should suffice. | |||
2009-12-08 | nouveau: use boolean instead of bool | Roland Scheidegger | |
2009-12-08 | cell: use boolean instead of bool | Roland Scheidegger | |
2009-12-08 | Format layout cannot be used to distinguish scaled/normalised formats. | Michal Krol | |
2009-12-08 | Merge branch 'gallium-strict-aliasing' | Roland Scheidegger | |
2009-12-08 | gallium: fix more potential strict aliasing issues | Roland Scheidegger | |
In particular, gcc man page warns that union a_union { int i; double d; }; int f() { double d = 3.0; return ((union a_union *) &d)->i; } "might" not be ok (why not?), even though it doesn't seem to generate any warnings. Hence don't use this and do the extra step to actually use assignment to get the values in/out of the union. This changes parts of 3456f9149b3009fcfce80054759d05883d3c4ee5. | |||
2009-12-08 | Remove remaining pipe format utility functions. | Michal Krol | |
Depricate pf_type(), pf_size_*(), pf_layout() and pf_exp2(). Map depricated PIPE_FORMAT_TYPE to new UTIL_FORMAT_ values: UNKNOWN = TYPE_VOID UNORM = TYPE_UNSIGNED + LAYOUT_ARITH SNORM = TYPE_SIGNED + LAYOUT_ARITH FIXED = TYPE_FIXED FLOAT = TYPE_FLOAT USCALED = TYPE_UNSIGNED + LAYOUT_ARRAY SSCALED = TYPE_SIGNED + LAYOUT_ARRAY SRGB = TYPE_COLORSPACE_SRGB | |||
2009-12-08 | move assert to avoid crash in debug build. | Alan Hourihane | |
2009-12-08 | Merge branch 'mesa_7_7_branch' | Andre Maasikas | |
Conflicts: src/mesa/drivers/dri/r600/r700_assembler.c src/mesa/main/version.h | |||
2009-12-08 | i915g: Fix memory leak when pci id is unknown. | Vinson Lee | |
2009-12-08 | i915g: Add missing break statement in i915_debug_packet. | Vinson Lee | |
2009-12-08 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Andre Maasikas | |
2009-12-08 | llvmpipe: Use number of CPUs as default number of threads. | José Fonseca | |
Also bump MAX_THREADS to 8. | |||
2009-12-07 | llvmpipe: Initialize variables in emit_instruction. | Vinson Lee | |
2009-12-07 | llvmpipe: remove some left-over debug code | Brian Paul | |