Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-09-01 | gallium: added st_bind/release_teximage() functions | Brian Paul | |
2008-06-23 | gallium: Add accessor functions to get textures from a st_framebuffer | Jakob Bornecrantz | |
2008-06-18 | gallium: added new st_set_framebuffer_surface() | Brian Paul | |
This allows the winsys to explicitly specify gallium surfaces for a framebuffer object. | |||
2008-06-18 | gallium: added st_get_proc_address() | Brian Paul | |
2008-03-26 | gallium: Change pipe->flush() interface to optionally return a fence. | Michel Dänzer | |
The cell driver still uses an internal CELL_FLUSH_WAIT flag, in the long run proper fencing should be implemented for it. | |||
2008-01-26 | gallium: add notify_swapbuffers_complete, use it to set surfaces to ↵ | Keith Whitwell | |
undefined state | |||
2008-01-17 | Back-port miscellaneous fixes from internal branch (mostly portability fixes). | José Fonseca | |
These are changes that are in our internal branch, but somehow were skipped so far. It was done using visual comparison of the branches -- it is likely that changes are being carried on the wrong way | |||
2007-12-19 | Fix problem with initial viewport/scissor size. | Brian | |
If an app never called glViewport, the viewport size was always 0 by 0 pixels. Now pass initial size to st_create_framebuffer() and initialize the viewport and scissor bounds in st_make_current(). This could also be fixed by ensuring the gl_framebuffers passed to _mesa_make_current() were initialized to the right size. But that involves allocating the renderbuffers/pipe_surfaces earlier and that runs into some other issues ATM. Also remove obsolete createRenderbuffers param to st_create_framebuffer(). | |||
2007-12-12 | Re-org of st_create_framebuffer() and renderbuffer format selection. | Brian | |
st_create_framebuffer() now takes pipe_formats for the color, depth, stencil buffers. This avoids a round-about chain of calls to pipe->is_format_supported() for window renderbuffers (their format never changes). Renderbuffer format selection code in st_format.c is simpler now too. | |||
2007-12-07 | added ST_SURFACE_DEPTH | Brian | |
2007-11-07 | New PIPE_FLUSH_WAIT flag for pipe->flush(). | Brian | |
The state tracker doesn't have to directly call winsys->wait_idle() anymore. glFlush and glFinish both go through pipe->flush() now. | |||
2007-11-05 | don't include mtypes.h in st_public.h | Brian | |
2007-11-05 | move st_invalidate_state() prototype to st_context.h | Brian | |
2007-11-05 | Remove some temporary state tracker context/framebuffer_create functions. | Brian | |
2007-11-05 | Update xlib driver to use newer state tracker context/framebuffer functions. | Brian | |
XMesaContext has an st_context * which contains a mesa context. | |||
2007-11-05 | added st_notify_swapbuffers() | Brian | |
2007-11-05 | added st_get_framebuffer_surface() and ST_SURFACE_x tokens | Brian | |
2007-11-05 | comments, tweaks | Brian | |
2007-11-05 | added st_unreference_framebuffer() | Brian | |
2007-11-05 | added st_resize_framebuffer() | Brian | |
2007-11-05 | Introduce st_framebuffer type and st_create_framebuffer(), st_make_current() | Brian | |
2007-11-05 | public st_flush() | Brian | |
2007-11-01 | Sketch out new create/destroy context functions which create/wrap a Mesa ↵ | Brian | |
context. | |||
2007-06-14 | Rename directories again?! | Keith Whitwell | |
Some git wierdness going on. | |||
2007-06-14 | Renamed softpipe directories and files to something less confusing. | Keith Whitwell | |
softpipe/state_tracker --> state_tracker/ softpipe/ --> pipe/ softpipe/generic --> pipe/softpipe/ I don't think pipe is a great name, but I disliked all the others too. Luckily it's fairly easy to rename with git, so this can be revisited later. |