Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 689:5bb080d35049
Date: Tue, 19 Aug 2003 17:57:00 +0200
From: Stephane Marchesin
Subject: Re: [SDL] [patch] MMX alpha blit patches with MMX detection
I think everything is correct now. I've done as much testing as I could,
but some real-world testing wouldn't hurt, I think.
The patch is here : http://icps.u-strasbg.fr/~marchesin/sdl_mmxblit.patch
If you do byte-by-byte comparison of the output between C and MMX
functions, you'll notice that the results for 555 and 565 RGB alpha
blits aren't exactly the same. This is because MMX functions for 555 and
565 RGB have an higher accuracy. If you want the exact same behaviour
that's possible by masking the three lower alpha bits in the MMX
functions. Just ask !
I removed one MMX function because after I fixed it to match its C
equivalent, it revealed to be slower than the C version on a PIII
(although a bit faster on an Athlon XP).
I've also added MMX and PIII replacements for SDL_memcpy. Those provide
some speed up in testvidinfo -benchmark (at least for me, under linux &
X11).
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 22 Aug 2003 05:51:19 +0000 |
parents | 550bccdf04bd |
children | 19d8949b4584 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL video library | |
3 | |
4 noinst_LTLIBRARIES = libvideo.la | |
5 | |
6 # Define which subdirectories need to be built | |
7 SUBDIRS = @VIDEO_SUBDIRS@ | |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
163
diff
changeset
|
8 DIST_SUBDIRS = dummy x11 dga nanox fbcon directfb vgl svga ggi aalib \ |
0 | 9 wincommon windib windx5 \ |
630
550bccdf04bd
Added initial support for RISC OS (thanks Peter Naulls!)
Sam Lantinga <slouken@libsdl.org>
parents:
513
diff
changeset
|
10 maccommon macdsp macrom riscos quartz \ |
433
706de3956894
Added initial support for PicoGUI (thanks Micah!)
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
11 bwindow ps2gs photon cybergfx epoc picogui \ |
513
8feff52d7f5f
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
509
diff
changeset
|
12 ataricommon xbios gem dc qtopia XFree86 |
0 | 13 |
14 DRIVERS = @VIDEO_DRIVERS@ | |
15 | |
16 # Include the architecture-independent sources | |
17 COMMON_SRCS = \ | |
18 SDL_RLEaccel.c \ | |
19 SDL_RLEaccel_c.h \ | |
20 SDL_blit.c \ | |
21 SDL_blit.h \ | |
22 SDL_blit_0.c \ | |
23 SDL_blit_1.c \ | |
24 SDL_blit_A.c \ | |
25 SDL_blit_N.c \ | |
26 SDL_bmp.c \ | |
27 SDL_cursor.c \ | |
28 SDL_cursor_c.h \ | |
29 SDL_gamma.c \ | |
30 SDL_glfuncs.h \ | |
31 SDL_leaks.h \ | |
32 SDL_memops.h \ | |
33 SDL_pixels.c \ | |
34 SDL_pixels_c.h \ | |
35 SDL_surface.c \ | |
36 SDL_stretch.c \ | |
37 SDL_stretch_c.h \ | |
38 SDL_sysvideo.h \ | |
39 SDL_video.c \ | |
40 SDL_yuv.c \ | |
41 SDL_yuvfuncs.h \ | |
42 SDL_yuv_sw.c \ | |
43 SDL_yuv_sw_c.h \ | |
44 SDL_yuv_mmx.c \ | |
689
5bb080d35049
Date: Tue, 19 Aug 2003 17:57:00 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
630
diff
changeset
|
45 mmx.h \ |
0 | 46 blank_cursor.h \ |
47 default_cursor.h | |
48 | |
49 libvideo_la_SOURCES = $(COMMON_SRCS) | |
50 libvideo_la_LIBADD = $(DRIVERS) | |
51 libvideo_la_DEPENDENCIES = $(DRIVERS) |