Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-16 | r300/compiler: fix repeat wrap mode for TXP and NPOTs | Marek Olšák | |
No idea why st/mesa unnecessarily inserts TXP where TEX is sufficient. Also re-enabling the NPOT fallback for repeat in r300g. | |||
2010-04-15 | r300/compiler: kill off RC_WRAP_CLAMP | Marek Olšák | |
A variant thereof might be later reintroduced for the mirrored-clamp modes. | |||
2010-04-13 | i915: Fix comments about cube layouts | Jakob Bornecrantz | |
2010-04-12 | r300/compiler: Hax around instructions limits in mirroring code. | Corbin Simpson | |
Stuff's starting to show up in arbnpot. | |||
2010-04-12 | r300/compiler: Comment code, add much better mirror maths. | Corbin Simpson | |
2010-04-11 | r300/compiler: Implement texcoord repeat and mirror for NPOT. | Corbin Simpson | |
2010-04-11 | r300/compiler: Add NPOT compatibility fields to external state. | Corbin Simpson | |
Completely unused for now. | |||
2010-04-11 | Fix build with --enable-32-bit. | Török Edwin | |
CFLAGS needs to be passed, as you already know. Commit 3e17a5b047124c46ee45dbd1848127c67e0d62f3 broke this by adding a new link command without CFLAGS. Signed-off-by: Török Edwin <edwintorok@gmail.com> Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> | |||
2010-04-11 | Revert "dri/drivers: fix 32bit builds on 64bit systems" | Dan Nicholson | |
This reverts commit bd09fce27119548cb91cc2aa9ced6a7347aefc3a. Török Edwin sent the correct fix to the list a couple days ago in <1270832747-15611-1-git-send-email-edwintorok@gmail.com>. | |||
2010-04-11 | dri/drivers: fix 32bit builds on 64bit systems | Maciej Cencora | |
2010-04-11 | Merge commit 'origin/7.8' | Maciej Cencora | |
2010-04-11 | r300: respect radeon common code fallbacks | Maciej Cencora | |
Fixes progs/demos/shadowtex under KMS | |||
2010-04-11 | r300: set proper vertex index limits also in non indexed mode | Maciej Cencora | |
Fixes #27521, broken menus in UT2004 and broken water refraction in Sauerbraten. | |||
2010-04-10 | i965: Remove unnecessary header. | Vinson Lee | |
2010-04-10 | r300: Remove unnecessary header. | Vinson Lee | |
2010-04-10 | mach64: Remove unnecessary header. | Vinson Lee | |
2010-04-10 | radeon: Remove unnecessary header. | Vinson Lee | |
2010-04-10 | r300/compiler: Remove unused variable. | Vinson Lee | |
2010-04-09 | r600: add new r7xx pci ids | Alex Deucher | |
2010-04-09 | nouveau: Import latest nouveau_class.h from renouveau | Ben Skeggs | |
And fix nv50_screen.c to compile against the updated header. | |||
2010-04-08 | intel: Call intel_prepare_render() in intelClear() | Li Peng | |
Make sure we have up to date buffers before we start looking at the tiling bits to determine how to clear. | |||
2010-04-08 | intel: Call intel_prepare_render() in intelClear() | Li Peng | |
Make sure we have up to date buffers before we start looking at the tiling bits to determine how to clear. | |||
2010-04-07 | r300: Initialize compiler.max_temp_regs for blits. | Michel Dänzer | |
Blits were broken since commit e41a64591bf1a74465bf0adc7d35c991c4cfb4fe ('r300/compiler: make the max number of fragment shader temporaries adjustable'). | |||
2010-04-06 | mesa: Add OES_EGL_image to extension list. | Chia-I Wu | |
2010-04-05 | r300/compiler: make the max number of fragment shader temporaries adjustable | Marek Olšák | |
2010-04-03 | r300 compiler: add target output debugging. | Dave Airlie | |
print the output target in the FP debug. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-03-30 | intel: Bump intel driver date to later than the date on the 7.8 branch | Ian Romanick | |
2010-03-30 | dri: Drop another unused __DRIscreen field | Kristian Høgsberg | |
2010-03-30 | dri: Drop the unused dummyContext | Kristian Høgsberg | |
2010-03-30 | dri: Drop an unused __DRIcontext field | Kristian Høgsberg | |
2010-03-30 | intel: Remove redundant fields from struct intel_context | Kristian Høgsberg | |
All these pointers are in the __DRIcontext struct, which we point to. | |||
2010-03-30 | intel: Use fb->Height when flipping read buffer orientation | Kristian Høgsberg | |
With DRI2, x and y are always zero and fb->Height is always up to date with the drawable height. | |||
2010-03-30 | r300/compiler: Unbreak DDX/DDY. | Corbin Simpson | |
Fixes progs/glsl/deriv. | |||
2010-03-30 | drisw: fix use after free (bug 27370) | George Sapountzis | |
2010-03-28 | intel: Bump intel driver date to reflect status as 2010Q1 release | Ian Romanick | |
2010-03-27 | drisw: add comment to libGL about stride | George Sapountzis | |
2010-03-27 | drisw: make stride issue profound | George Sapountzis | |
2010-03-26 | Merge branch '7.8' | Michel Dänzer | |
Conflicts: src/mesa/drivers/dri/intel/intel_mipmap_tree.c - left what was in master | |||
2010-03-26 | dri/swrast: Fix frontbuffer rendering. | Michel Dänzer | |
Was broken since the endianness fixes. (cherry picked from commit 4cf14fa80bda5f4ea65bef3a64e748e064d0bde1) | |||
2010-03-26 | dri/swrast: Fix missed conversion of one pixel pointer increment. | Michel Dänzer | |
This probably broke the swrast DRI driver when running X in depth 16. (cherry picked from commit 6ec259eb17dfbb74972b8cffb4e02a9dbab288cc) | |||
2010-03-26 | dri/common: add comment about DRISW wrt DRI1 / DRI2 | George Sapountzis | |
2010-03-26 | r300/compiler: Lower CMP for vertex programs. | Corbin Simpson | |
I think my maths is right? | |||
2010-03-25 | i965: Fix readpixels from ReadBuffer != DrawBuffer. | Eric Anholt | |
Fixes piglit fbo-readdrawpix. (cherry picked from commit 5782b2a968bb979b651e49bb5fc4162faa842050) | |||
2010-03-25 | i965: Fix inversion for glCopyPixels to/from FBOs. | Eric Anholt | |
fixes piglit fbo-copypix. (cherry picked from commit a589da14dee0c2a32e6e529f1a390b01a3ee4001) | |||
2010-03-25 | intel: Rely on allocated region pitch for the miptree pitch. | Eric Anholt | |
Bug #26966: 945 miptree pitch disagreement with libdrm. (cherry picked from commit da011faf48155a5c02ebc1fe1fa20a4f54b8c657) | |||
2010-03-25 | intel: Remove extra tiling setting after allocating a tiled region. | Eric Anholt | |
(cherry picked from commit 32f143b4327521a058dc05f0ab9087a5696b9618) | |||
2010-03-25 | intel: Respect src pitch in _mesa_copy_rect(). | Eric Anholt | |
If a non-zero src_y was used, this would break piglit depth-level-clamp. (cherry picked from commit e1e48ea15c1fe448f0b69e086b66c1123dc98bb7) | |||
2010-03-25 | Merge branch '7.8' | Brian Paul | |
2010-03-25 | glslcompiler: Fix build. | Vinson Lee | |
2010-03-25 | drisw_util: add fields for gallium swrast_dri | George Sapountzis | |