Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | trace: Dump the fence, not its pointer. | José Fonseca | 2009-04-09 | 1 | -2/+6 |
| | |||||
* | trace: Use 'flags' name consistently. | José Fonseca | 2009-04-09 | 1 | -6/+6 |
| | |||||
* | trace: Make calls dumping threadsafe. | José Fonseca | 2009-04-08 | 1 | -0/+7 |
| | |||||
* | trace: Make call no global. | José Fonseca | 2009-04-08 | 1 | -3/+4 |
| | |||||
* | trace: Simplify cast wrappers. | José Fonseca | 2009-04-08 | 5 | -58/+29 |
| | |||||
* | trace: Match pipe_context::clear prototype. | José Fonseca | 2009-04-08 | 1 | -7/+4 |
| | |||||
* | gallium: Clean up driver clear() interface. | Michel Dänzer | 2009-04-04 | 1 | -8/+13 |
| | | | | | Only allows clearing currently bound buffers, but colour and depth/stencil in a single call. | ||||
* | gallium: Remove some little-used fields from struct pipe_surface. | Michel Dänzer | 2009-03-26 | 1 | -2/+0 |
| | |||||
* | trace: Defer the cast to after the check for enabled trace. | José Fonseca | 2009-03-25 | 1 | -2/+5 |
| | | | | Prevents segfault when trace is disabled. | ||||
* | trace: Update readme. | José Fonseca | 2009-03-25 | 1 | -3/+3 |
| | | | | | Actually, the trace driver with the xlib statetracker is still causing assertion failures here.. | ||||
* | trace: Number calls. | José Fonseca | 2009-03-25 | 2 | -1/+12 |
| | |||||
* | Add #ifdefs needed to compile Gallium on Solaris with gcc or Sun cc | Alan Coopersmith | 2009-03-25 | 1 | -2/+2 |
| | | | | Signed-off-by: Alan Coopersmith <[email protected]> | ||||
* | trace: Fix args to buffer write | Jakob Bornecrantz | 2009-03-22 | 1 | -1/+1 |
| | |||||
* | gallium: remove remaining references to origin_lower_left | Keith Whitwell | 2009-03-21 | 1 | -1/+0 |
| | |||||
* | trace: Formalize on a standard for data size pair | Jakob Bornecrantz | 2009-03-19 | 1 | -10/+11 |
| | |||||
* | trace: Fix memory leak | Jakob Bornecrantz | 2009-03-16 | 1 | -1/+2 |
| | |||||
* | trace: Re-init refcounters just incase | Jakob Bornecrantz | 2009-03-16 | 2 | -0/+5 |
| | |||||
* | trace: Dump buffer data via buffer writes | Jakob Bornecrantz | 2009-03-16 | 2 | -64/+37 |
| | |||||
* | gallium: Use struct pipe_atomic for pipe refcounts. | Thomas Hellstrom | 2009-03-16 | 1 | -1/+1 |
| | | | | Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com> | ||||
* | gallium: consolidate bypass_vs and bypass_clipping flags | Keith Whitwell | 2009-03-13 | 1 | -2/+1 |
| | | | | | | | | | 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. | ||||
* | trace: Fix some typos | Jakob Bornecrantz | 2009-03-13 | 1 | -2/+2 |
| | |||||
* | gallium: Remove do_flip argument from surface_copy | Jakob Bornecrantz | 2009-03-13 | 1 | -3/+1 |
| | | | | | | | I should have gotten most uses and implementation correctly fixed, but things might break. Feel free to blame me. | ||||
* | trace: Wrap pipe_buffers | Jakob Bornecrantz | 2009-03-12 | 7 | -20/+215 |
| | |||||
* | trace: Add dump util functions for wrapped pointers | Jakob Bornecrantz | 2009-03-12 | 2 | -1/+58 |
| | |||||
* | trace: Move buffer functions from winsys to screen | Jakob Bornecrantz | 2009-03-11 | 8 | -548/+458 |
| | |||||
* | trace: Remove all whitespace at EOL | Jakob Bornecrantz | 2009-03-11 | 11 | -297/+297 |
| | |||||
* | trace: Fixup trace a bit | Jakob Bornecrantz | 2009-03-11 | 3 | -51/+61 |
| | |||||
* | trace: Fixup trace a bit | Jakob Bornecrantz | 2009-03-11 | 1 | -7/+18 |
| | |||||
* | gallium: Remove some superfluous instances of #include "p_inlines.h". | Michel Dänzer | 2009-03-04 | 1 | -1/+0 |
| | |||||
* | gallium: Unify reference counting. | Michel Dänzer | 2009-03-04 | 4 | -98/+48 |
| | | | | | | | | | | | | | | 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(). | ||||
* | gallium: Add support for BSD operating systems, tested with FreeBSD | Benjamin Close | 2009-02-25 | 1 | -2/+2 |
| | | | | | | | | | | 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 <[email protected]> | ||||
* | gallium: Improve makefiles for libraries | Jakob Bornecrantz | 2009-02-20 | 1 | -5/+1 |
| | | | | | | | | 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. | ||||
* | gallium: Fix up trace driver for introduction of struct pipe_transfer. | Michel Dänzer | 2009-02-18 | 5 | -29/+200 |
| | |||||
* | util: Move p_debug.h into util module. | José Fonseca | 2009-02-18 | 3 | -3/+3 |
| | | | | | The debug functions depend on several util function for os abstractions, and these depend on debug functions, so a seperate module is not possible. | ||||
* | gallium: remove pipe_buffer from surfaces | Zack Rusin | 2009-02-02 | 1 | -1/+0 |
| | | | | | | | 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. | ||||
* | gallium: make p_winsys internal | Zack Rusin | 2009-01-30 | 2 | -17/+17 |
| | | | | | move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage | ||||
* | gallium: give the screen priority when it comes to buffer allocations | Zack Rusin | 2009-01-29 | 1 | -16/+16 |
| | | | | | | 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 | ||||
* | gallium: remove redundant size from the constant buffer | Zack Rusin | 2009-01-27 | 1 | -1/+0 |
| | | | | reuse the size of the actual buffer | ||||
* | gallium: it's a reference value, not a reference number | Zack Rusin | 2009-01-27 | 1 | -1/+1 |
| | |||||
* | gallium: standardize api on the prefix "nr" | Zack Rusin | 2009-01-27 | 2 | -3/+3 |
| | |||||
* | gallium: standardize naming of masks | Zack Rusin | 2009-01-27 | 1 | -2/+2 |
| | |||||
* | gallium: standardize on stride instead of pitch in the interface | Zack Rusin | 2009-01-27 | 1 | -2/+2 |
| | |||||
* | gallium: Remove the standalone surfaces. | José Fonseca | 2009-01-20 | 2 | -65/+17 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit is mostly just a cosmetic change that cleans-up the interfaces, replacing pipe_winsys::surface_* calls by /** * Allocate storage for a display target surface. * * Often surfaces which are meant to be blitted to the front screen (i.e., * display targets) must be allocated with special characteristics, memory * pools, or obtained directly from the windowing system. * * This callback is invoked by the pipe_screenwhen creating a texture marked * with the PIPE_TEXTURE_USAGE_DISPLAY_TARGET flag to get the underlying * buffer storage. */ struct pipe_buffer *(*surface_buffer_create)(struct pipe_winsys *ws, unsigned width, unsigned height, enum pipe_format format, unsigned usage, unsigned *stride); Most drivers were updated but not all were tested. Use the softpipe pipe driver and the xlib winsys changes as a reference when fixing other drivers. | ||||
* | Merge commit 'origin/gallium-0.2' into gallium-xlib-rework | Keith Whitwell | 2009-01-09 | 1 | -2/+2 |
|\ | | | | | | | | | | | Conflicts: progs/glsl/Makefile | ||||
| * | gallium: Replace uint64 by standard uint64_t. | José Fonseca | 2009-01-08 | 1 | -2/+2 |
| | | | | | | | | | | uint64 is not (so?) standard, and often redefined by third parties, causing name clashes. | ||||
* | | gallium: split driver-independent code out of xlib winsys | Keith Whitwell | 2009-01-08 | 1 | -0/+18 |
|/ | | | | Place in new xlib state-tracker. This is a statetracker for the GLX API. | ||||
* | trace: Fix typo in build instructions. | José Fonseca | 2008-09-16 | 1 | -1/+1 |
| | |||||
* | trace: Request a growable file. | José Fonseca | 2008-09-08 | 1 | -1/+1 |
| | |||||
* | trace: Use util's stream. | José Fonseca | 2008-09-08 | 5 | -354/+6 |
| | |||||
* | gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.h | Brian Paul | 2008-08-24 | 9 | -8/+9 |
| | | | | Also, rename p_tile.[ch] to u_tile.[ch] |