Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-20 | gallium: make state tracker explictly ask for rendercache flushes | Keith Whitwell | |
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-10 | Add 'type' parameter to is_format_supported() to specify texture vs. drawing ↵ | Brian | |
surface, etc. Additional types may be added in the future. | |||
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-06 | Improved logic for setting up depth/stencil buffers in st_create_framebuffer() | Brian | |
2007-11-06 | Handle the corner case of 24bit depth buffer with 0bit stencil buffer. | José Fonseca | |
2007-11-05 | don't include mtypes.h in st_public.h | 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 | added st_unreference_framebuffer() | Brian | |
2007-11-05 | set stfb->Base.Initialized | Brian | |
2007-11-05 | added st_resize_framebuffer() | Brian | |
2007-11-05 | st_create_framebuffer() working | Brian | |
2007-11-05 | new file for st_framebuffer stuff | Brian | |