Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gallium: temporarily disable the memcmp() in cso_set_framebuffer() | Brian | 2008-03-20 | 1 | -1/+2 |
| | | | | The memcmp() fails to detect buffer size changes... | ||||
* | gallium: use the utility pasthrough shaders | Brian | 2008-03-20 | 4 | -110/+39 |
| | | | | This avoids the Mesa->TGSI translation step. | ||||
* | gallium: added util_make_fragment_passthrough_shader() | Brian | 2008-03-20 | 2 | -0/+107 |
| | |||||
* | gallium: add debug facility to dump random blobs as hex | Keith Whitwell | 2008-03-20 | 2 | -0/+26 |
| | |||||
* | gallium: added fb_width/height fields to softpipe context | Brian Paul | 2008-03-19 | 5 | -13/+18 |
| | | | | | These are convenience fields. Otherwise, we have to check cbuf[0] or zsbuf in various places. | ||||
* | gallium: add face, dirtyLevels params to pipe->texture_update() | Brian Paul | 2008-03-19 | 12 | -23/+24 |
| | | | | | This provides better information about which images in texture object have changed. Also, call texture_update() from more places previously missed. | ||||
* | gallium: need to set/save framebuffer state in st_context since we use it ↵ | Brian Paul | 2008-03-19 | 1 | -8/+8 |
| | | | | elsewhere | ||||
* | gallium: fix bug in cso_single_sampler_done() in computation of nr_samplers | Brian Paul | 2008-03-19 | 1 | -2/+4 |
| | | | | Need to find highest used sampler so search from end toward beginning. | ||||
* | gallium: Fix broken logic. | José Fonseca | 2008-03-19 | 1 | -1/+1 |
| | |||||
* | gallium: explict float casts | Keith Whitwell | 2008-03-19 | 1 | -1/+5 |
| | |||||
* | gallium: implement CSO save/restore functions for use by meta operations ↵ | Brian | 2008-03-19 | 14 | -244/+408 |
| | | | | | | | (blit, gen-mipmaps, quad-clear, etc) Also, additional cso_set_*() functions for viewport, framebuffer, blend color, etc. state. | ||||
* | gallium: remove old commented-out code | Brian | 2008-03-19 | 1 | -3/+3 |
| | |||||
* | gallium: set tc->surface_map = NULL after unmapping | Brian | 2008-03-19 | 1 | -0/+1 |
| | |||||
* | gallium: Add generic enum and flags dumping utility functions. | José Fonseca | 2008-03-19 | 2 | -0/+108 |
| | |||||
* | set outputs_safe to 0 as it's possible for the code generation | Alan Hourihane | 2008-03-19 | 2 | -2/+2 |
| | | | | to slip over the allocated memory for the vb. | ||||
* | remove redundant init | Alan Hourihane | 2008-03-19 | 1 | -2/+0 |
| | |||||
* | gallium: added braces to silence warning | Brian | 2008-03-18 | 1 | -1/+2 |
| | |||||
* | gallium: plug in and init GL_EXT_framebuffer_blit function/extension | Brian | 2008-03-18 | 3 | -0/+10 |
| | |||||
* | gallium: added st_cb_blit.c | Brian | 2008-03-18 | 1 | -0/+1 |
| | |||||
* | gallium: s/copy_pixels_state/blit_state | Brian | 2008-03-18 | 1 | -1/+1 |
| | |||||
* | gallium: added cso_unset_*() functions | Brian | 2008-03-18 | 2 | -1/+48 |
| | | | | | | If we go behind the CSO context's back and set pipe state directly we need to invalidate the CSO's 'current' pointers. This will be revisited... | ||||
* | gallium: glFramebufferBlitEXT() implementation | Brian | 2008-03-18 | 2 | -0/+171 |
| | |||||
* | gallium: fix typos | Brian | 2008-03-18 | 2 | -2/+2 |
| | |||||
* | gallium: new pixel blit code | Brian | 2008-03-18 | 4 | -0/+338 |
| | | | | | Copy rectangular region from one surface to another w/ scaling. Disables most fragment operations. | ||||
* | gallium: protect against multi-#include | Brian | 2008-03-18 | 1 | -0/+8 |
| | |||||
* | added u_simple_shaders.c | Brian | 2008-03-18 | 2 | -0/+2 |
| | |||||
* | gallium: make the gen_mipmap_state struct private | Brian | 2008-03-18 | 2 | -12/+14 |
| | |||||
* | gallium: use new simple shader utility routines | Brian | 2008-03-18 | 1 | -248/+12 |
| | |||||
* | gallium: utilities for creating simple vertex/fragment shaders | Brian | 2008-03-18 | 2 | -0/+315 |
| | |||||
* | gallium: restore additional state after clearing with quad | Brian | 2008-03-18 | 1 | -0/+2 |
| | |||||
* | cell: Fix various stencil test code-gen bugs | Ian Romanick | 2008-03-18 | 1 | -27/+43 |
| | |||||
* | cell: Correctly load stencil for PIPE_FORMAT_S8Z24_UNORM | Ian Romanick | 2008-03-18 | 1 | -3/+2 |
| | |||||
* | gallium: make REALLOC a bit more like realloc | Keith Whitwell | 2008-03-18 | 1 | -7/+9 |
| | |||||
* | cell: Fix depth read / write for s8z24. | Ian Romanick | 2008-03-18 | 2 | -2/+24 |
| | | | | Stencil is still broken. | ||||
* | cell: Fix added whitespace errors. | Ian Romanick | 2008-03-18 | 1 | -2/+2 |
| | |||||
* | cell: Minor changes to make stencil not crash | Ian Romanick | 2008-03-18 | 2 | -5/+11 |
| | | | | | | I'm not sure these are quite correct. The reflect demo doesn't assert anymore, but it doesn't produce correct results either. SPE-based vertex shader code needs to be disabled for relfect to run. | ||||
* | cell: Move and (conditionally) silence debug code | Ian Romanick | 2008-03-18 | 2 | -10/+39 |
| | |||||
* | d3d: Allow to iterate over the handle table. | José Fonseca | 2008-03-18 | 2 | -0/+31 |
| | |||||
* | d3d: Add function to walk through all items in the hash table. | José Fonseca | 2008-03-18 | 2 | -1/+27 |
| | |||||
* | gallium: Don't be pedantic about removing non exiting items from the table. | José Fonseca | 2008-03-18 | 1 | -2/+6 |
| | |||||
* | gallium: Convenience debug_warning function. | José Fonseca | 2008-03-18 | 1 | -0/+10 |
| | |||||
* | gallium: fix a mix-up in the uint[1] do_row() case | Brian | 2008-03-18 | 1 | -2/+2 |
| | |||||
* | gallium: use new color packing utility functions | Brian | 2008-03-18 | 1 | -55/+6 |
| | |||||
* | gallium: utility for packing color, z values according to pipe_format | Brian | 2008-03-18 | 1 | -0/+125 |
| | |||||
* | gallium: Silencium warnings on Windows. | Michal Krol | 2008-03-18 | 1 | -3/+3 |
| | |||||
* | gallium: initial gen mipmap s/w fallback code | Brian | 2008-03-17 | 1 | -2/+607 |
| | |||||
* | cell: Don't segfault when unbinding alpha / stencil / depth test state | Ian Romanick | 2008-03-17 | 3 | -13/+29 |
| | |||||
* | cell: Don't free NULL code pointers | Ian Romanick | 2008-03-17 | 1 | -1/+3 |
| | |||||
* | cell: Initial code-gen for alpha / stencil / depth testing | Ian Romanick | 2008-03-17 | 15 | -170/+1409 |
| | | | | | | | | Alpha test is currently broken because all per-fragment testing occurs before alpha is calculated. Stencil test is currently broken because the Z-clear code asserts if there is a stencil buffer. | ||||
* | cell: Fix simple register allocator | Ian Romanick | 2008-03-17 | 1 | -6/+6 |
| | | | | THere are 64-bits in a uint64_t, not 128. Duh. |