| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-06-02 | intel: Clip to window after calling Driver.TexImage2D | Ian Romanick | |
| This prevents the width / height from being clipped to the window size before the texture is allocated. This matches intelCopyTexImage1D. This should fix bug #21227 Signed-off-by: Ian Romanick <ian.romanick@intel.com> (cherry picked from commit 129f311673c99eb912d659023e50bc5f0ef53249) | |||
| 2009-06-02 | intel: Clip to window after calling Driver.TexImage2D | Ian Romanick | |
| This prevents the width / height from being clipped to the window size before the texture is allocated. This matches intelCopyTexImage1D. This should fix bug #21227 Signed-off-by: Ian Romanick <ian.romanick@intel.com> | |||
| 2009-06-02 | i915: Don't put VBOs in graphics memory unless required for an operation. | Eric Anholt | |
| This saves doing swtnl from uncached memory, which is painful. Improves clutter test-text performance by 10% since it started using VBOs. | |||
| 2009-06-02 | i965: Support OPCODE_TRUNC in the brw_wm_fp.c code. | Eric Anholt | |
| This gets two more glean glsl1 tests using the non-GLSL path. | |||
| 2009-06-01 | radeon: Provide a more detailled GL_RENDERER string. | Nicolai Hähnle | |
| Display the chip family and PCI ID. This can be parsed easily, and essentially all information that the driver has about the chip can be deduced from it. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
| 2009-06-01 | Use separate $(MINSTALL) for installing libraries | Dan Nicholson | |
| The special feature of bin/minstall to copy symlinks is only ever needed when installing libraries which may have .so symlinks. All the headers and directories can use a normal install program. These two modes are separated as $(INSTALL) and $(MINSTALL) to allow the user (or autoconf) to override installing normal files as they please. An autoconf check for the install program has been added and will be used in preference to minstall when available. Fixes bug 16053. | |||
| 2009-05-31 | R6xx/r7xx: Fix blinn's lighting shader | Cooper Yuan | |
| 2009-05-31 | R6xx/r7xx: Fix texture perspective gradients issue | Cooper Yuan | |
| 2009-05-29 | get rid of chip_object struct | Alex Deucher | |
| 2009-05-29 | more cleanup | Alex Deucher | |
| 2009-05-29 | more cleanup | Alex Deucher | |
| 2009-05-29 | more cleanup | Alex Deucher | |
| 2009-05-29 | more cleanup | Alex Deucher | |
| 2009-05-29 | remove more old r300 bits | Alex Deucher | |
| 2009-05-29 | more cleanup | Alex Deucher | |
| 2009-05-29 | Remove unused functions | Alex Deucher | |
| 2009-05-29 | Fix spelling in function name | Alex Deucher | |
| 2009-05-29 | R6xx/r7xx: remove old sw tcl bits | Alex Deucher | |
| 2009-05-29 | R6xx/R7xx: switch to common clear with draw code | Alex Deucher | |
| 2009-05-29 | r6xx/r7xx: switch to common dma functions for vecs | Alex Deucher | |
| 2009-05-29 | Remove subpixel offset from viewport | Alex Deucher | |
| remove subpixel offset inherited from r100 code. based on 038f0bf5916df5bae1145d234589e5fd528bb7fa | |||
| 2009-05-28 | Argh. fix last commit. clears are still broken | Alex Deucher | |
| 2009-05-28 | R6xx/r7xx: re-enable clears | Alex Deucher | |
| flush cache and wait for idle after drawing. Probably just need the cache flush. This gets redbook hello working properly. | |||
| 2009-05-28 | R6xx, add edge rules for triangles | Cooper Yuan | |
| 2009-05-28 | mesa: regenerated API files for GL_EXT_provoking_vertex | Brian Paul | |
| 2009-05-28 | r300: when using cs path emit scissor in the cmdbuffer | Jerome Glisse | |
| 2009-05-28 | r300: rework texture offset emission. | Jerome Glisse | |
| 2009-05-27 | radeon: emit scissor before emiting vertices | Jerome Glisse | |
| 2009-05-27 | radeon: emit scissor when using cs submission style. | Jerome Glisse | |
| 2009-05-26 | i915: Fall back on NPOT textured metaops on 830-class. | Eric Anholt | |
| 2009-05-26 | i915: Restore the Viewport and DepthRange functions on 8xx. | Eric Anholt | |
| Fixes failed viewport updates on glxgears (and other apps) resize since e41780fedc2c1f22b43118da30a0103fa68b769f. Bug #20473. | |||
| 2009-05-26 | intel: Override MaxRenderbufferSize with hardware constraints | Chris Wilson | |
| Limit the maximum renderbuffer size to 8192 on i965 and to 2048 on earlier hardware. | |||
| 2009-05-26 | enable surface sync function | Alex Deucher | |
| - needs to be more fine-grained | |||
| 2009-05-26 | r6xx: fix more r6xx specific cases | Alex Deucher | |
| 2009-05-26 | R6xx: select proper shader format | Alex Deucher | |
| 2009-05-26 | fix segfault when running glxinfo | Alex Deucher | |
| 2009-05-26 | add missing RS780 pci id | Alex Deucher | |
| 2009-05-26 | fix build when HAVE_LIBDRM_RADEON is defined | Alex Deucher | |
| 2009-05-25 | radeon: on update drawable don't firevertices as it might be call from GetLock | Jerome Glisse | |
| To avoid locking bug we shouldn't not call firevertices from this path as it's call from radeon get lock. | |||
| 2009-05-25 | r200: emit scissor when dri2 is enabled | Jerome Glisse | |
| In DRI1 kernel emit scissor but in dri2 cs path we have to explicitly program them. | |||
| 2009-05-25 | r200: fix multitexturing in dri2 path | Jerome Glisse | |
| 2009-05-25 | r200: emit cliprect with indexed primitive | Jerome Glisse | |
| 2009-05-24 | radeon: realloc dma if needed after revalidate | Jerome Glisse | |
| Revalidate can trigger flushing and dma buffer deallocation, so retry allocation on such case. | |||
| 2009-05-24 | radeon: Remove drawable & readable from radeon_dri_mirror | Nicolai Hähnle | |
| The duplication of state data caused a crash due to double-free on destruction of context, because a variable wasn't correctly null'ed out. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
| 2009-05-22 | radeon: reading back to scratch reg through status map doesn't work | Jerome Glisse | |
| For some unknown reasons the scratch reg value doesn't endup in the status map at the scratch reg offset, this is a temporary work around until we figure out why it doesn't work. | |||
| 2009-05-21 | r6xx/r7xx: fix segfault in vertex shader setup | Alex Deucher | |
| 2009-05-21 | r6xx: fix count on START_3D packet | Alex Deucher | |
| 2009-05-21 | i965: fix whitespace in brw_tex_layout.c | Eric Anholt | |
| The broken indentation was driving me crazy, so fix other stuff while I'm here. | |||
| 2009-05-21 | i956: Make state dependency of SF on drawbuffer bounds match Mesa's. | Eric Anholt | |
| Noticed while debugging a weird 1D FBO testcase that left its existing viewport and projection matrix in place when switching drawbuffers. Didn't fix the testcase, though. | |||
| 2009-05-21 | intel: Fall back on any rendering to texture with no miptree. | Eric Anholt | |
| Fixes segfault on an fbo.c negative test for FBO with texture width/height of 0. Previously we just tested for border != 0 to work around this segfault. | |||
