Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 1240:3b8a43c428bb
From Bug #36:
There are a couple of issues with the selection of Altivec alpha-blitting
routines in CalculateAlphaBlit() in src/video/SDL_Blit_A.c.
1) There's no check for the presence of Altivec when checking if the
Blit32to565PixelAlphaAltivec() routine can be selected.
2) Altivec cannot be used in video memory, and there's no check if the
destination surface is a hardware surface. (Alpha-blitting to a hardware
surface with GPU support is a bad idea, but somebody's bound to do it anyway.)
Patch to fix these attached.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 08 Jan 2006 21:18:15 +0000 |
parents | 19d8949b4584 |
children | a4d515d0fc3a |
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 \ |
1187 | 12 ataricommon xbios gem dc qtopia XFree86 wscons |
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) |