Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-18 | trace: Improve shader wrapping | Jakob Bornecrantz | |
2009-05-16 | gallium: remove occlusion_count flag from depth-stencil state | Keith Whitwell | |
Drivers can just keep track of whether they are within a query by monitoring the begin/end query callbacks. The flag adds no information beyond that. Only softpipe was examining this flag -- it has been fixed up and retested with demos/arbocclude. | |||
2009-05-16 | trace: Export enabled status | Jakob Bornecrantz | |
2009-05-16 | trace: Unwrap buffer in texture_blanket | Jakob Bornecrantz | |
2009-05-16 | trace: If either shader is disabled don't draw | Jakob Bornecrantz | |
2009-05-16 | trace: Put shaders on a list in the context | Jakob Bornecrantz | |
2009-05-16 | trace: Move state dump functions to tr_dump_state.[c|h] | Jakob Bornecrantz | |
2009-04-20 | trace: Add initializer for static variables | Jakob Bornecrantz | |
2009-04-19 | trace: Enable dumping to be turned on and off | Jakob Bornecrantz | |
2009-04-17 | trace: Keep screen objects on lists | Jakob Bornecrantz | |
2009-04-17 | trace: Fix is_referenced functions | Jakob Bornecrantz | |
2009-04-17 | trace: Simplify trace_buffer function | Jakob Bornecrantz | |
2009-04-15 | gallium: Make sure we flush before some texture / buffer operations. | Thomas Hellstrom | |
Also implement context member functions to optimize away those flushes whenever possible. Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
2009-04-09 | trace: Dump the fence, not its pointer. | José Fonseca | |
2009-04-09 | trace: Use 'flags' name consistently. | José Fonseca | |
2009-04-08 | trace: Make calls dumping threadsafe. | José Fonseca | |
2009-04-08 | trace: Make call no global. | José Fonseca | |
2009-04-08 | trace: Simplify cast wrappers. | José Fonseca | |
2009-04-08 | trace: Match pipe_context::clear prototype. | José Fonseca | |
2009-04-04 | gallium: Clean up driver clear() interface. | Michel Dänzer | |
Only allows clearing currently bound buffers, but colour and depth/stencil in a single call. | |||
2009-03-26 | gallium: Remove some little-used fields from struct pipe_surface. | Michel Dänzer | |
2009-03-25 | trace: Defer the cast to after the check for enabled trace. | José Fonseca | |
Prevents segfault when trace is disabled. | |||
2009-03-25 | trace: Update readme. | José Fonseca | |
Actually, the trace driver with the xlib statetracker is still causing assertion failures here.. | |||
2009-03-25 | trace: Number calls. | José Fonseca | |
2009-03-25 | Add #ifdefs needed to compile Gallium on Solaris with gcc or Sun cc | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2009-03-22 | trace: Fix args to buffer write | Jakob Bornecrantz | |
2009-03-21 | gallium: remove remaining references to origin_lower_left | Keith Whitwell | |
2009-03-19 | trace: Formalize on a standard for data size pair | Jakob Bornecrantz | |
2009-03-16 | trace: Fix memory leak | Jakob Bornecrantz | |
2009-03-16 | trace: Re-init refcounters just incase | Jakob Bornecrantz | |
2009-03-16 | trace: Dump buffer data via buffer writes | Jakob Bornecrantz | |
2009-03-16 | gallium: Use struct pipe_atomic for pipe refcounts. | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | |||
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-13 | trace: Fix some typos | Jakob Bornecrantz | |
2009-03-13 | gallium: Remove do_flip argument from surface_copy | Jakob Bornecrantz | |
I should have gotten most uses and implementation correctly fixed, but things might break. Feel free to blame me. | |||
2009-03-12 | trace: Wrap pipe_buffers | Jakob Bornecrantz | |
2009-03-12 | trace: Add dump util functions for wrapped pointers | Jakob Bornecrantz | |
2009-03-11 | trace: Move buffer functions from winsys to screen | Jakob Bornecrantz | |
2009-03-11 | trace: Remove all whitespace at EOL | Jakob Bornecrantz | |
2009-03-11 | trace: Fixup trace a bit | Jakob Bornecrantz | |
2009-03-11 | trace: Fixup trace a bit | Jakob Bornecrantz | |
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-25 | gallium: Add support for BSD operating systems, tested with FreeBSD | Benjamin Close | |
BSD supports pipe in the same way as linux hence options which are safe for linux are also safe for BSD. Define PIPE_OS_BSD in include/pipe/p_config.h and adjust the defines to make use of it. Also define MAP_ANONYMOUS for BSD systems which use MAP_ANON Signed-off-by: Benjamin Close <Benjamin.Close@clearchain.com> | |||
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-18 | gallium: Fix up trace driver for introduction of struct pipe_transfer. | Michel Dänzer | |
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-02 | gallium: remove pipe_buffer from surfaces | Zack Rusin | |
this change disassociates, at least from the driver perspective, the surface from buffer. surfaces are technically now views on the textures so make it so by hiding the buffer in the internals of textures. | |||
2009-01-30 | gallium: make p_winsys internal | Zack Rusin | |
move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage | |||
2009-01-29 | gallium: give the screen priority when it comes to buffer allocations | Zack Rusin | |
allows the driver to overwrite buffer allocation, first step on the way to making winsys interface internal to the drivers. state trackers and the code above it will go through the screen |