summaryrefslogtreecommitdiff
path: root/src/mesa/x86/read_rgba_span_x86.S
AgeCommit message (Collapse)Author
2011-02-11mesa: Optionally build a dricore support library (v3)Christopher James Halse Rogers
This an adds --enable-shared-dricore option to configure. When enabled, DRI modules will link against a shared copy of the common mesa routines rather than statically linking these. This saves about 30MB on disc with a full complement of classic DRI drivers. v2: Only enable with a gcc-compatible compiler that handles rpath Handle DRI_CFLAGS without filter-out magic Build shared libraries with the full mklib voodoo Fix typos v3: Resolve conflicts with talloc removal patches Signed-off-by: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
2011-01-24mesa: s/movzxw/movzwl/ in read_rgba_span_x86.SDimitry Andric
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=33386 NOTE: This is a candidate for the 7.9 and 7.10 branches Signed-off-by: Brian Paul <brianp@vmware.com>
2010-01-23x86: Do not build read_rgba_span_x86.S on Mac OS X.Vinson Lee
read_rgba_span_x86.S uses the pseudo-ops .hidden and .type which are not recognized on Mac OS X.
2009-10-30x86: Fix the test for negative pixel count in optimized rgb565 spans.Eric Anholt
There's a bunch of bogus looking stuff the count handling in this code, but this fixes the testcases we have.
2008-05-14_generic_read_RGBA_span_BGRA8888_REV_SSE2: It should adjust the sourceXiang, Haihao
and target pointers after do the first 2 pixels. fix bug #15850
2007-11-09remove commented-out codeBenno Schulenberg
2007-11-05fix mmx code (bug 12614)Brian
2007-03-13use movdqu instead of movdqa for unaligned load avoiding a segfault (bug 10265)Roland Scheidegger
2007-03-10Fix TEXREL issues.Brian
Patch submitted by Christoph Brill. See http://www.gentoo.org/proj/en/hardened/pic-fix-guide.xml
2006-04-17Add .note.GNU-stack section to assembler files to avoid the default behaviorKristian Høgsberg
of requesting executable stacks.
2005-06-30Fix crashes with pixel readback when using the optimized assembly functions.Roland Scheidegger
Pixel count can be negative (this could be fixed elsewhere), so adapt the functions to work with such inputs correctly (same behaviour as non-optimized functions). Bugzilla #2317 Submitted by idr
2005-01-04use HIDDEN macro to export fewer symbols (bug 2210)Brian Paul
2004-12-15protected elfish code against non-elf compilersDaniel Borca
2004-11-02Added MMX optimized version of the RGB565 ReadRGBASpan routine.Ian Romanick
2004-10-14Add support for optimized versions of the code underlying ReadPixelsIan Romanick
(and DrawPixels). The R200, R128, and Unichrome drivers get support in this commit. Other drivers would be easy enough to add for people that have the cards. The DRI (CVS) build will need to be updated to account for the new source files.