diff options
author | Soren Sandmann Pedersen <sandmann@redhat.com> | 2007-05-18 11:58:24 -0400 |
---|---|---|
committer | Soren Sandmann Pedersen <sandmann@redhat.com> | 2007-05-18 14:06:21 -0400 |
commit | 7916419a0092b8bf9713c0840f9e969950d7aa85 (patch) | |
tree | e77b8466e678274fbbbd6a2b0bee910b3a27db6d /fb | |
parent | 998164bac648756e5b5254aa36e075ae360d3972 (diff) |
Comment out setup of general MMX code
Diffstat (limited to 'fb')
-rw-r--r-- | fb/fbmmx.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fb/fbmmx.c b/fb/fbmmx.c index 8a132f6e8..53459a000 100644 --- a/fb/fbmmx.c +++ b/fb/fbmmx.c @@ -878,10 +878,15 @@ mmxCombineAddC (CARD32 *dest, CARD32 *src, CARD32 *mask, int width) _mm_empty(); } +#if 0 +/* FIXME: this should be reinstated after adding fbmmx to pixman */ extern FbComposeFunctions composeFunctions; +#endif void fbComposeSetupMMX(void) { +#if 0 +/* FIXME: this should be reinstated after adding fbmmx to pixman */ /* check if we have MMX support and initialize accordingly */ if (fbHaveMMX()) { composeFunctions.combineU[PictOpOver] = mmxCombineOverU; @@ -910,6 +915,7 @@ void fbComposeSetupMMX(void) composeFunctions.combineMaskU = mmxCombineMaskU; } +#endif } |