Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-01-02 | Cell: basic triangle rendering works. | Brian | |
The cell "render_stage" (last in the "draw" pipeline) emits vertices into a buffer which is pulled by the SPUs in response to a "RENDER" command. This is pretty much temporary/scaffold code for now. | |||
2008-01-02 | nv40: some cleanups | Ben Skeggs | |
2008-01-02 | Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1 | Ben Skeggs | |
2008-01-01 | Plug in more infrastructure for actual rendering. | Brian | |
Track vertex/fragment shader state. Plug in pipe->draw_arrays(), pipe->draw_elements(). Plug render stage (a stub) into end of 'draw' pipeline. Specify a hard-coded vertex format for now. | |||
2008-01-01 | hack/fix pack_color() for correct ps3 format | Brian | |
2008-01-01 | Clean-up, re-org some vertex/fragment shader state code. | Brian | |
2008-01-01 | move SP_NEW_ #defines into sp_state.h | Brian | |
2008-01-01 | fix vbo display list memleak upon context destruction | Brian | |
2008-01-01 | unref buffer after drawing, fixes rastpos mem leak | Brian | |
2008-01-01 | fix single-sided stencil test bug | Brian | |
2008-01-01 | fix leak, fix refcount error | Brian | |
2008-01-01 | fix a mem leak, document another existing leak | Brian | |
2008-01-01 | unref const buffers during context destroy | Brian | |
2008-01-01 | unref const buffers during context destroy | Brian | |
2008-01-01 | free program caches | Brian | |
2008-01-01 | fix mem leaks | Brian | |
2008-01-01 | fix mem leak (free key) | Brian | |
2008-01-01 | free surface caches in softpipe_destroy() | Brian | |
2008-01-01 | fix a memleak | Brian | |
2008-01-01 | free tgsi machine state | Brian | |
2008-01-01 | free tgsi machine state | Brian | |
2008-01-01 | added tgsi_exec_machine_free_data() | Brian | |
2008-01-01 | free Default1D/2DArray objects | Brian | |
2007-12-30 | nv40: s/READ/WRITE/ | Ben Skeggs | |
2007-12-30 | nouveau: header update | Ben Skeggs | |
2007-12-30 | nv40: untested fragprog mods for big-endian chips | Ben Skeggs | |
2007-12-30 | nouveau: typo fix | Ben Skeggs | |
2007-12-27 | nouveau: remove legacy stuff | Ben Skeggs | |
2007-12-27 | nouveau: track last validated offsets, so we know when relocs can be avoided. | Ben Skeggs | |
2007-12-27 | nouveau: allow unfenced read of buffers in a few situations | Ben Skeggs | |
2007-12-27 | nouveau: remove fence_del(), _ref() can be used for the same purpose. | Ben Skeggs | |
2007-12-26 | nouveau: header update | Ben Skeggs | |
2007-12-26 | nv40: use index buffers rather than inline indices. | Ben Skeggs | |
We probably want to use inline indices in some situations still, but this commit's primary purpose is to workaround some mis-rendering caused by a more complicated problem that'll get fixed eventually. | |||
2007-12-24 | i965: a little better way of handling immediates | Zack Rusin | |
2007-12-24 | nouveau: pushbuf code, now with 50% less suck! | Ben Skeggs | |
Far more efficient, if not a bit more complicated. Hopefully not too buggy still. This commit will potentially expose some unrelated bugs, fixes for them will follow "real soon now". | |||
2007-12-24 | nv40: ensure all required buffers are accounted for during state validation | Ben Skeggs | |
2007-12-23 | nouveau: speed up user buffers. | Ben Skeggs | |
Try and fit user buffers into a small GART scratch area at validate time, instead of going to a lot of effort to fit these (mostly) use-once-and-discard objects into VRAM. | |||
2007-12-23 | nv40: seems we have stencil faces around the wrong way. | Ben Skeggs | |
2007-12-23 | nouveau: don't wait when deleting fences unless needed | Ben Skeggs | |
2007-12-23 | nouveau: some cleanups | Ben Skeggs | |
2007-12-23 | nouveau: match gallium changes | Ben Skeggs | |
2007-12-23 | Merge branch 'upstream-gallium-0.1' into darktama-gallium-0.1 | Ben Skeggs | |
2007-12-20 | i965: very crude and hacky way of handling immediates | Zack Rusin | |
2007-12-20 | gallium: make state tracker explictly ask for rendercache flushes | Keith Whitwell | |
2007-12-20 | 965: respect pipe flush flags | Keith Whitwell | |
Now we emit way too many flushes instead of none at all. | |||
2007-12-20 | gallium: translate ARB fp/vp immediates consistently to tgsi immediates | Keith Whitwell | |
2007-12-20 | 965: fix the constant buffers | Zack Rusin | |
2007-12-19 | Add some prototype code for converting RET to END for main(). Disabled for now. | Brian | |
2007-12-19 | temporarily defeat an assertion | Brian | |
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(). |