| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-01-18 | mesa: Remove unnecessary headers from dlist.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from drawpix.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from enable.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary headers from fbobject.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from formats.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from image.c. | Vinson Lee | |
| 2010-01-18 | softpipe: Skip depth testing for PIPE_S8_UNORM. | José Fonseca | |
| 2010-01-18 | mesa: Handle PIPE_FORMAT_B8G8R8X8_UNORM. | José Fonseca | |
| 2010-01-18 | pipebuffer: Ensure buffer size/alignment is not zero. | José Fonseca | |
| 2010-01-18 | svga: Ensure buffer size/alignment is not zero. | José Fonseca | |
| 2010-01-18 | mesa: Remove unnecessary headers from lines.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from mipmap.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from pixel.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary headers from pixelstore.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from points.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary header from polygon.c. | Vinson Lee | |
| 2010-01-18 | r60: Add relocs for CB_TILE/FRAG | Alex Deucher | |
| as per 46dc6fd3ed5ef96cda53641a97bc68c3bc104a9f | |||
| 2010-01-18 | mesa: Remove unnecessary header from state.c. | Vinson Lee | |
| 2010-01-18 | mesa: Remove unnecessary headers from texcompress.c. | Vinson Lee | |
| 2010-01-18 | st/dri: Add comment for intentional fallthrough in case statement. | Vinson Lee | |
| 2010-01-18 | docs: Clarify PIPE_TEXTURE_USAGE_DYNAMIC. | Corbin Simpson | |
| 2010-01-18 | docs: Use proper XOR symbol. | Corbin Simpson | |
| 2010-01-18 | r100: add blit support | Alex Deucher | |
| Only enabled with KMS. | |||
| 2010-01-18 | r200: add blit support | Alex Deucher | |
| Only enabled with KMS. | |||
| 2010-01-18 | docs: Spacing in TGSI formulae. | Corbin Simpson | |
| Some of those still look atrocious. :T | |||
| 2010-01-18 | docs: Grammar and refs in Rasterizer. | Corbin Simpson | |
| 2010-01-18 | docs: Cleanup Rasterizer a bit. | Corbin Simpson | |
| I'm getting better at this, I think. | |||
| 2010-01-18 | docs: Fix terms and refs. | Corbin Simpson | |
| I fail at Sphinx-style ReST. | |||
| 2010-01-18 | docs: Slowly keep fleshing out more info. | Corbin Simpson | |
| 2010-01-18 | docs: PIPE_TEXTURE_USAGE info. | Corbin Simpson | |
| From IRC with Jakob. | |||
| 2010-01-18 | i965: Clean up constbuf handling by splitting reladdr/non-reladdr loads. | Eric Anholt | |
| The codepaths in the function were almost entirely different. | |||
| 2010-01-18 | i965: Only set up the stack register if it's going to get used. | Eric Anholt | |
| 2010-01-18 | i965: Fix loads of non-relative-addr constants after a reladdr load. | Eric Anholt | |
| Fixes piglit vp-arl-constant-array-huge-overwritten. | |||
| 2010-01-18 | nv50: fix constant vtxattr methods | Christoph Bumiller | |
| This function was untested, sorry. | |||
| 2010-01-18 | nv50: make instanced drawing work with edge flags | Christoph Bumiller | |
| And fix some obvious mistakes introduced in the previous instancing commit. | |||
| 2010-01-18 | nv50: cannot exit shaders on a control flow instruction | Christoph Bumiller | |
| Fixes lockup triggered by this ingenious shader: 1: CALL :3 2: END 3: BGNSUB ... | |||
| 2010-01-18 | nv50: fix nv50_program->immd memory leak | Marcin Slusarz | |
| 2010-01-18 | st/mesa: change instruction count assertion to > 0 | Brian Paul | |
| Shaders should at least have an END instruction. | |||
| 2010-01-18 | tgsi: Fix behaviour of dimension index. | Michal Krol | |
| The dimension index always addresses the second-dimension axis. | |||
| 2010-01-18 | tgsi: Allow TEMPORARY registers as indirect address into source operands. | Michal Krol | |
| 2010-01-18 | tgsi: Add ureg_DECL_immediate_block_uint(). | Michal Krol | |
| Allows declaring a contiguous block of immediates. Useful for relative indexing. | |||
| 2010-01-18 | glsl: remove __inline directive | Brian Paul | |
| It makes no difference with gcc -O3, for example. | |||
| 2010-01-18 | st/dri: fix optionCache memory leaks | Marcin Slusarz | |
| Signed-off-by: Brian Paul <brianp@vmware.com> | |||
| 2010-01-18 | st/mesa: updated comments and whitespace | Brian Paul | |
| 2010-01-18 | st/mesa: fix memory leak in st_translate_mesa_program | Marcin Slusarz | |
| Signed-off-by: Brian Paul <brianp@vmware.com> | |||
| 2010-01-18 | r600: fix some warnings | Alex Deucher | |
| 2010-01-18 | r600: Update default state size to account for the new relocation | Jerome Glisse | |
| the new relocation for CB_COLOR0_FRAG & CB_COLOR0_TILE add 4 dwords to the default command stream. Increase the prediction default size to take this into account | |||
| 2010-01-18 | r6xx/r7xx: emit relocation for FRAG & TILE buffer | Jerome Glisse | |
| FRAG & TILE buffer are unused but still they need to be associated with a valid relocation so that userspace can't try to abuse them to overwritte GART and then try to write anywhere in system memory. | |||
| 2010-01-18 | r600: fix shadow_ambient shader | Andre Maasikas | |
| rtype enums are different, DST_REG_OUTPUT got SRC_REG_CONSTANT in some shaders and produced invalid output/hang as TEX output is temp register always set out src to SRC_REG_TEMPORARY | |||
| 2010-01-18 | radeong: Don't allocate HW BOs for constantbufs. | Corbin Simpson | |
| We have broken 1000 FPS. Hell yes. Heavily inspired by Marek's patch, but using pipebuffer instead of a roll-your-own malloc. | |||
