Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-18 | draw: fix first provoking vertex mode for unfilled quads | Brian Paul | |
2009-06-18 | draw: clean up indentation | Brian Paul | |
2009-06-09 | draw: implement flatshade_first for drawing pipeline | Brian Paul | |
2009-05-27 | draw: Fix assertion failure at fetch_emit_prepare | Mike Kaplinksiy | |
2009-05-05 | gallium/draw: cope with unused vertex_elements | Keith Whitwell | |
2009-05-01 | draw: added some inf/nan debug code (disabled) | Brian Paul | |
2009-04-28 | gallium/draw: add ability to print out active pipeline stages | Keith Whitwell | |
2009-04-10 | draw: Silence pointer-to-integer cast warning. | Michal Krol | |
2009-04-10 | draw: Fix vertex_header initialisation. | Michal Krol | |
2009-04-09 | draw: Fix LIT instruction. | Michal Krol | |
2009-03-31 | draw: added Nan/Inf assertion in debug code | Brian Paul | |
2009-03-25 | draw: Use size_t (for x86_64). | José Fonseca | |
2009-03-23 | draw: update aa points shader comment | Keith Whitwell | |
2009-03-18 | draw: use AOS_ERROR rather than clash-prone ERROR() macro | Keith Whitwell | |
2009-03-13 | gallium: consolidate bypass_vs and bypass_clipping flags | Keith Whitwell | |
The draw module provides a similar interface to the driver which is retained as various bits of hardware may be able to take on incremental parts of the vertex pipeline. However, there's no need to advertise all this complexity to the state tracker. There are basically two modes now - normal and passthrough/screen-coords. | |||
2009-03-04 | gallium: Remove some superfluous instances of #include "p_inlines.h". | Michel Dänzer | |
2009-03-04 | gallium: Unify reference counting. | Michel Dänzer | |
The core reference counting code is centralized in p_refcnt.h. This has some consequences related to struct pipe_buffer: * The screen member of struct pipe_buffer must be initialized, or pipe_buffer_reference() will crash trying to destroy a buffer with reference count 0. u_simple_screen takes care of this, but I may have missed some of the drivers not using it. * Except for rare exceptions deep in winsys code, buffers must always be allocated via pipe_buffer_create() or via screen->*buffer_create() rather than via winsys->*buffer_create(). | |||
2009-02-20 | gallium: Improve makefiles for libraries | Jakob Bornecrantz | |
The template makefile that most libraries in gallium included was based on dri and had a bunch unrelevant junk in it. Update it and improve the depending makefiles. | |||
2009-02-14 | draw: Fix segfault if rast is null | Jakob Bornecrantz | |
2009-02-18 | Merge branch 'gallium-texture-transfer' | Michel Dänzer | |
Conflicts: src/gallium/drivers/softpipe/sp_tile_cache.c | |||
2009-02-18 | Merge commit 'origin/gallium-0.1' | Keith Whitwell | |
Conflicts: src/gallium/auxiliary/draw/draw_vs_aos.c | |||
2009-02-17 | draw: Reuse xmm registers. | Keith Whitwell | |
2009-02-16 | Merge branch 'master' into gallium-texture-transfer | Keith Whitwell | |
Conflicts: src/mesa/state_tracker/st_cb_accum.c src/mesa/state_tracker/st_cb_drawpixels.c | |||
2009-02-18 | Merge commit 'origin/draw-vbuf-interface' | Keith Whitwell | |
2009-02-18 | util: Move p_debug.h into util module. | José Fonseca | |
The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible. | |||
2009-02-18 | draw: Reuse xmm registers. | Keith Whitwell | |
2009-02-16 | gallium: fix glean's vertProg1 | Alan Hourihane | |
RSQ test 2 (reciprocal square toot of negative value) | |||
2009-02-17 | draw: second argument to unmap is max, not count | Keith Whitwell | |
2009-02-17 | draw: add map/unmap directives for swtnl driver interface | Keith Whitwell | |
Previously draw module asked for a pointer into (mapped) vertex data, which it would incrementally fill and emit draw commands against. This was hard for the drivers to deal with, especially in the case where a draw command would force a flush and thus an unmap of the vertex data. With this change, the draw module explicitly maps & then unmaps vertex data prior to emitting draw commands. | |||
2009-02-11 | draw: Cap max vertices instead of failing assert. | José Fonseca | |
2009-02-10 | draw: Fix build -- rename Size to NrTokens. | Michal Krol | |
2009-02-05 | gallium: No longer allow CPU mapping surfaces directly. | Michel Dänzer | |
Instead, a new pipe_transfer object has to be created and mapped for transferring data between the CPU and a texture. This gives the driver more flexibility for textures in address spaces that aren't CPU accessible. This is a first pass; softpipe/xlib builds and runs glxgears, but it only shows a black window. Looks like something's off related to the Z buffer, so the depth test always fails. | |||
2009-01-27 | gallium: standardize on stride instead of pitch in the interface | Zack Rusin | |
2009-01-27 | draw: silence some warnings | Keith Whitwell | |
2009-01-27 | draw: queiten compiler warnings | Keith Whitwell | |
2009-01-10 | gallium: code to dump/debug PPC code (disabled) | Brian Paul | |
2009-01-09 | draw: Add missing include. | José Fonseca | |
2009-01-08 | draw: Predeclare struct. | José Fonseca | |
2009-01-08 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | José Fonseca | |
Conflicts: src/gallium/auxiliary/tgsi/tgsi_exec.c src/gallium/drivers/cell/spu/spu_command.h src/gallium/include/pipe/p_shader_tokens.h src/mesa/main/config.h src/mesa/main/mtypes.h src/mesa/shader/prog_execute.c src/mesa/shader/slang/slang_emit.c src/mesa/state_tracker/st_program.c src/mesa/state_tracker/wgl/stw_wgl.h src/mesa/state_tracker/wgl/stw_wgl_pixelformat.h | |||
2008-12-31 | draw: Avoid integer overflow converting pointers on 64bit archs. | José Fonseca | |
Not really an error, as we only care for the lower 4 bits. | |||
2008-12-30 | draw: Do not specify types in bitfields. | José Fonseca | |
As advised by gcc -pedantic. | |||
2008-12-23 | draw: allow driver-override of draw_need_pipeline() | Keith Whitwell | |
2008-12-16 | gallium: fix some asserts | Alan Hourihane | |
2008-12-15 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | Alan Hourihane | |
Conflicts: src/gallium/winsys/gdi/SConscript | |||
2008-12-11 | gallium: catch vertex overflow higher up | Alan Hourihane | |
2008-12-11 | draw: Silencium compiler warnings on Windows. | Michal Krol | |
2008-12-10 | gallium: added missing brace to fix broken build | Brian Paul | |
2008-12-10 | Merge commit 'origin/gallium-0.1' into gallium-0.2 | Brian Paul | |
2008-12-10 | gallium: added draw_set_mrd() function to fix polygon offset | Brian Paul | |
The Minimum Resolvable Depth factor depends on the driver and can't just be computed from the number of Z buffer bits. Glean's polygon offset test now passes with softpipe. Still need to determine the MRD factor for other gallium drivers, if they use the draw module's polygon offset stage... | |||
2008-12-10 | gallium: change 65535 to UNDEFINED_VERTEX_ID | Alan Hourihane | |