Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-18 | pipe/atomic: dont use ms interlock calls from gcc | Keith Whitwell | |
2009-03-18 | pipe/atomic: clean up #ifdef maze | Keith Whitwell | |
2009-03-17 | gallium: Use `_new' name, `new' is a reserved keyword in C++. | Michal Krol | |
2009-03-17 | gallium: Provide unprotected atomic implementation for display and miniport ↵ | Michal Krol | |
interfaces. | |||
2009-03-16 | gallium: Implement atomic for MSVC on x86. | Michal Krol | |
2009-03-16 | gallium: Implement atomic interface for windows user mode subsystem. | Michal Krol | |
2009-03-16 | gallium: Use macro parameter names consistently. | Michal Krol | |
2009-03-16 | gallium: pipe_mutex_init() is of type void. | Michal Krol | |
Both the windows and fallback versions are void already. | |||
2009-03-16 | gallium: Include p_compiler.h for integer types. | Michal Krol | |
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-16 | gallium: Add simple atomic class api. | 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 | 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-10 | tgsi: Consider INDEX, NEGATE, MULTIPLYMATRIX opcodes for removal. | Michal Krol | |
2009-03-09 | gallium: Fix p_refcnt.h for C++ compilers. | Michel Dänzer | |
2009-03-04 | gallium: Use consistent semantics for map ranges in gallium. | José Fonseca | |
Which are slightly different from ARB_map_buffer_range semantics, since gallium still supports more than one mapping of the same buffer. | |||
2009-03-04 | gallium: Ensure map ranges are valid. | José Fonseca | |
2009-03-04 | Merge commit 'origin/master' into gallium-map-range | José Fonseca | |
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-03-03 | st/drm: s/hocks/hooks/ | Jakob Bornecrantz | |
2009-03-03 | gallium: Massage the interface to more closely resemble ARB_map_buffer_range | José Fonseca | |
2009-03-03 | Merge commit 'origin/master' into gallium-map-range | José Fonseca | |
2009-03-03 | Merge commit 'origin/gallium-0.1' | Keith Whitwell | |
Conflicts: scons/gallium.py src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c src/gallium/include/pipe/p_defines.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_exec_draw.c | |||
2009-03-02 | gallium: New PIPE_BUFFER_USAGE_DONTBLOCK flag. | José Fonseca | |
To prevent blocking when mapping a buffer. | |||
2009-03-02 | Merge commit 'origin/master' into gallium-map-range | José Fonseca | |
2009-02-27 | Include p_compiler.h in drm_api.h for boolean typedef. | Corbin Simpson | |
2009-02-27 | st/drm: Seperate get handle for global buffer ids | Jakob Bornecrantz | |
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-25 | st/drm: Bring drm_api.h up to date with latest changes | Jakob Bornecrantz | |
2009-02-24 | gallium: Allow to specify how much will be read / was written in buffer ↵ | José Fonseca | |
map/unmap. This allows the pipe driver to do more efficient DMA upload/downloads, by avoiding to read/write unneeded/unmodified data. | |||
2009-02-24 | gallium: Add pipe_buffer_write/read inlines. | José Fonseca | |
Saves code, and will simplify future interface changes. | |||
2009-02-23 | gallium: add winsys interface for viewport changes to support DRI2 | Alan Hourihane | |
2009-02-23 | gallium: Define PIPE_PRIM_MAX. | José Fonseca | |
2009-02-18 | gallium: Add pipe_transfer_reference(). | Michel Dänzer | |
2009-02-18 | Merge branch 'gallium-texture-transfer' | Michel Dänzer | |
Conflicts: src/gallium/drivers/softpipe/sp_tile_cache.c | |||
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 | 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-10 | gallium: Rename Size member of TGSI token to NrTokens. | Michal Krol | |
Driver writers often got confused and assumed Size to be the number of immediate values in Immediate declaration. | |||
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-02-05 | gallium: fixup #includes: p_screen.h does not need anything in p_state.h | Brian Paul | |
2009-02-05 | gallium: move 'struct pipe_winsys' | Brian Paul | |
Not used in p_state.h but used in p_context.h and p_screen.h | |||
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: add a convience wrapper for simple screens | Zack Rusin | |
forwards screen calls to the winsys | |||
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 | |||
2009-01-27 | gallium: remove redundant size from the constant buffer | Zack Rusin | |
reuse the size of the actual buffer | |||
2009-01-27 | gallium: it's a reference value, not a reference number | Zack Rusin | |
2009-01-27 | gallium: standardize api on the prefix "nr" | Zack Rusin | |
2009-01-27 | gallium: standardize naming of masks | Zack Rusin | |
2009-01-27 | gallium: standardize on stride instead of pitch in the interface | Zack Rusin | |