Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-26 | gallium: fix more statetrackers/drivers for not using texture ↵ | Roland Scheidegger | |
width/height/depth arrays | |||
2009-07-16 | python: Hack to prevent segmentation faults when python exits. | José Fonseca | |
2009-03-26 | python: Don't bypass vs/clip/viewport by default. | José Fonseca | |
2009-03-26 | python: Drop st_buffer. | José Fonseca | |
It adds nothing, now that pipe_buffer has a pointer to the screen. | |||
2009-03-16 | python: Do not pass shader_state to util shader functions. | michal | |
2009-03-16 | python: Use transfer objects to initialise texture data. | michal | |
2009-03-16 | python: Use new bypass_vs_clip_and_viewport rasteriser flag. | michal | |
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-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 | |||
2008-09-04 | python: Use pipe_buffer_* inlines as much as possible. | José Fonseca | |
2008-09-03 | gallium: Have pipe_buffer_* receive a pipe_screen instead of a pipe_context. | José Fonseca | |
We want to use the pipe_buffer_* inlines everywhere, but a pipe context is not always available nor is it needed. | |||
2008-08-24 | gallium: refactor/replace p_util.h with util/u_memory.h and util/u_math.h | Brian Paul | |
Also, rename p_tile.[ch] to u_tile.[ch] | |||
2008-08-14 | python: Allow to use trace pipe driver with python. | José Fonseca | |
2008-08-14 | python: Simplify st_winsys. | José Fonseca | |
2008-08-12 | python: Allow writing to buffers. | José Fonseca | |
2008-07-16 | python: Set PIPE_TEX_MIPFILTER_NONE by default. | José Fonseca | |
2008-07-15 | python: Get object ownership done correctly. | José Fonseca | |
2008-07-15 | python: Allow hardware support. | José Fonseca | |
2008-07-14 | python: Set default state. | José Fonseca | |
2008-07-14 | python: Allow to create/specify shaders. | José Fonseca | |
2008-07-13 | python: New state tracker which exposes the pipe driver to python scripts. | José Fonseca | |
Still under development. Just barely works. |