Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-05 | radeon: Only get DRI2 front buffer information for glXBindTexImageEXT. | Michel Dänzer | |
2009-12-02 | Merge branch 'mesa_7_7_branch' | Jakob Bornecrantz | |
2009-12-02 | Merge commit 'mesa_7_6_branch' into mesa_7_7_branch | Jakob Bornecrantz | |
Conflicts: src/mesa/main/version.h | |||
2009-12-03 | r200: fix polygon stipple | Alex Deucher | |
fixes fdo bug 25354 Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2009-12-02 | intel: Make RGB renderbuffers use XRGB8888 like we do for RGB system buffers. | Eric Anholt | |
2009-12-01 | intel: Remove GL_NV_point_sprite from extension list | Ian Romanick | |
i830 does not (and cannot!) support the any of the non-default GL_POINT_SPRITE_R_MODE_NV settings. i915 and i965 could, but currently do not. In both cases it would require mucking about with the fragment shader. | |||
2009-12-02 | intel: Fix more front-buffer rendering after Brian's less flushing patch. | Eric Anholt | |
bcbfda71b03303d3f008a6f3cf8cb7d9667bf8d2 left out many blit paths. This fixes up more of them to get Blender to work again. Bug #25030. | |||
2009-12-02 | Revert "radeon/r300: no need to flush the cmdbuf when changing scissors ↵ | Dave Airlie | |
state in KMM mode" This reverts commit 286bf89e5a1fc931dbf523ded861b809859485e2. This doesn't appear to be correct, regression so revert it. http://bugs.freedesktop.org/show_bug.cgi?id=25193 | |||
2009-12-01 | Merge commit 'origin/mesa_7_7_branch' | Keith Whitwell | |
Conflicts: src/gallium/drivers/svga/svga_screen_texture.c src/gallium/state_trackers/xorg/xorg_composite.c src/gallium/state_trackers/xorg/xorg_exa.c src/gallium/state_trackers/xorg/xorg_renderer.c src/gallium/state_trackers/xorg/xorg_xv.c src/mesa/main/texgetimage.c src/mesa/main/version.h | |||
2009-12-01 | mesa: Update vertex texture code after gallium changes. | Michal Krol | |
2009-11-30 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Ian Romanick | |
Conflicts: progs/util/shaderutil.c src/mesa/drivers/dri/r600/r600_context.c src/mesa/main/version.h | |||
2009-11-30 | i915: Actually put i915PointParameterfv in the driver function table. Duh. | Ian Romanick | |
2009-11-29 | i915: Fallback bit define missed on previous commit | Ian Romanick | |
2009-11-29 | i915: Round point sizes instead of truncate. | Ian Romanick | |
2009-11-29 | i915: Enable point sprite coordinate generation | Ian Romanick | |
Support still isn't completely correct, but it's better. piglit point-sprite now passes. However, glean's pointSprite test fails. In that test the texture on the sprite is somehow inverted as though GL_POINT_SPRITE_COORD_ORIGIN were set to GL_LOWER_LEFT. i915 hardware shouldn't be able to do that! I believe there are also problems when not all texture units have GL_COORD_REPLACE set. The hardware enable seems to be all or nothing. Fixes bug #25313. | |||
2009-11-29 | r600 : clena up a bit for last commit. | Richard Li | |
2009-11-29 | r600 : add read port allocation for uniform; | Richard Li | |
mapping ps input based on vs output; fix bugs including constants updating for vs. | |||
2009-11-29 | radeon: update miptree code a little | Maciej Cencora | |
Simplify gl image level <-> miptree level mapping (are equal now). Don't allocate miptree for images that won't fit in it (fixes #25230). | |||
2009-11-29 | radeon: don't check the same miptree many times when looking for matching ↵ | Maciej Cencora | |
miptrees | |||
2009-11-29 | radeon: add some debugging info | Maciej Cencora | |
2009-11-28 | dri: Fix potential null pointer dereference in driBindContext. | Vinson Lee | |
2009-11-28 | radeon: need to flush cs when moving images between mipmap trees | Maciej Cencora | |
2009-11-25 | radeon: fix context destroy needing lock for flushing. | Dave Airlie | |
Thanks to Intel code which I've just stolen pretty much as usual. This fixes fdo bug 22851 which is a dri1 regression since rewrite. Tested by: fpiobaf (Fabio) on #radeon Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-25 | r600: add ARB_texture_non_power_of_two support. | Dave Airlie | |
This makes the miptree rounds up to the near POT for each level for all radeons, however since mipmaps aren't support with NPOT on previous radeons this calculation shouldn't cause any problems. If it does we can just make it r600 only. I tested a few mipmap demos on r500 and they all seem to work. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-24 | r600 : reset stack flag with one channel only. | Richard Li | |
2009-11-24 | r600 : fix stack depth setting bug. | Richard Li | |
2009-11-25 | radeon: fix context destroy needing lock for flushing. | Dave Airlie | |
Thanks to Intel code which I've just stolen pretty much as usual. This fixes fdo bug 22851 which is a dri1 regression since rewrite. Tested by: fpiobaf (Fabio) on #radeon Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-23 | i915: Initialize Length and Offset fields when mapping a buffer object | Ian Romanick | |
This fixes an assertion failure in _mesa_MapBufferARB. Fixes bugzilla #25253. | |||
2009-11-24 | r300: fix swtcl bo leak problem. | Dave Airlie | |
We can get a lot of swtcl bo allocations - need to probably abstract this a bit further. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-24 | radeon/r200/r300/r600: make bo mapping be explicit | Dave Airlie | |
This moves the bo mapping outside the DMA layer and makes it explicit, this should in theory make it simpler to split the clean up the dma/cmdbuf linkage that I created before that is broken. Tested on: r600, rv380 (tcl/no-tcl), rv200 (tcl/no-tcl) Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-24 | dri: Fix potential null pointer deference in dri_put_drawable. | Vinson Lee | |
2009-11-23 | Merge commit 'origin/mesa_7_7_branch' | Maciej Cencora | |
2009-11-23 | radeon: fix errors in miptree related function | Maciej Cencora | |
- typo - memory leak - off by one (spotted by airlied) | |||
2009-11-23 | Fix the DRI swrast driver for big endian platforms. | Michel Dänzer | |
Too bad I didn't realize earlier how easy this could be... Fixes http://bugs.freedesktop.org/show_bug.cgi?id=22767 . | |||
2009-11-22 | r600 : add support for shader instruction trunc and discard. | Richard Li | |
2009-11-23 | r600: hopefully fix segfault. | Dave Airlie | |
2009-11-23 | r600: fix inline issues | Dave Airlie | |
2009-11-22 | r600 : add stack depth calculation, enable CF pop. | Richard Li | |
2009-11-22 | r600 : use cf for all pop now, left optimization for future. | Richard Li | |
2009-11-22 | r300: fix VP source conflict resolution on 64-bit machines | Maciej Cencora | |
On 32bit machines we were lucky because the sizeof(reg) == sizeof(rc_src_register). On 64bit machines pointers are 8 bytes long, so we were overwriting other data. | |||
2009-11-22 | r300: fix SIN/COS/SCS instructions for R300 fp | Maciej Cencora | |
2009-11-21 | radeon: fix compressed mipmapped textures | Maciej Cencora | |
Tested on r300 only, other cards may require adjusting texture_compressed_row_align. | |||
2009-11-21 | radeon: fix glCompressedTexSubImage | Maciej Cencora | |
2009-11-21 | intel: make CopyTex[Sub]Image fallback debug messages more consistent | Roland Scheidegger | |
2009-11-21 | i965: Fix several memory leaks on exit. | Eric Anholt | |
Bug #25194. | |||
2009-11-20 | r600 : eliminate Wondows line ending for test code. | Richard Li | |
2009-11-20 | Merge remote branch 'origin/mesa_7_7_branch' | Dave Airlie | |
2009-11-20 | r100: fix texture_from_pixmap and compiz. | Dave Airlie | |
r100 state emission has separate rect and non-rect states, if we are doing TFP for a TEXTURE_2D we shouldn't use the rect states as they won't get emitted properly. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2009-11-19 | r600 : Clean up a bit test code mess. | Richard Li | |
2009-11-19 | r600 : change shader pop method for now. | Richard Li | |