summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/i965simple/brw_context.c
Commit message (Collapse)AuthorAgeFilesLines
* i965g: Drop i965simpleJakob Bornecrantz2009-10-051-139/+0
| | | | | | The driver never work with real hardware and has bitrotted for quite some time now, might as well drop it. If somebody wants to look at it just use git.
* gallium: Make sure we flush before some texture / buffer operations.Thomas Hellstrom2009-04-151-0/+25
| | | | | | | Also implement context member functions to optimize away those flushes whenever possible. Signed-off-by: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
* gallium: make p_winsys internalZack Rusin2009-01-301-1/+1
| | | | | move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage
* gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.hBrian Paul2008-08-241-1/+1
| | | | Also, rename p_tile.[ch] to u_tile.[ch]
* gallium: Add destroy callback to all *_winsys interfaces.José Fonseca2008-08-081-0/+3
| | | | For consistency and to simplify these objects' destruction.
* gallium: Eliminate p_winsys::printfJosé Fonseca2008-03-311-3/+2
| | | | Not convenient and almost not used at all. Better replacements in p_debug.h
* gallium: move is_format_supported() to pipe_screen structBrian2008-02-271-69/+0
|
* gallium: start removing pipe_context->get_name/vendor/param/paramfBrian2008-02-271-17/+0
| | | | | These are now per-screen functions, not per-context. State tracker updated, code in drivers and p_context.h disabled.
* gallium/i965: implement pipe_screen for i965 driver (untested)Brian2008-02-271-58/+12
|
* gallium: re-org of i965 texture/surface code, functionsBrian2008-02-201-3/+1
|
* gallium: new pipe->texture_update() functionBrian2008-02-201-0/+1
| | | | | Called whenever texture data is changed (glTexImage, glTexSubImage, glCopyTexSubImage, etc).
* Code reorganization: move files into their places.José Fonseca2008-02-151-0/+245
This is in a separate commit to ensure renames are properly preserved.