Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 968:4675910b0b7b
Date: Mon, 11 Oct 2004 15:17:27 +0300 (EEST)
From: Hannu Savolainen
Subject: Re: SDL uses obsolete OSS features
I did some work on getting OSS to work better with SDL. There have been
some problems with select which should be fixed now.
I'm having some problems in understanding what is the purpose of the
DSP_WaitAudio() routine. I added a return to the very beginning of this
routine and commendted out the define for USE_BLOCKING_WRITES. At least
lbreakout2 seems to work as well as earlier. The latencies are the same.
An ordinary blocking write does exactly the same thing than DSP_WaitAudio
does. So I would recommend using the USE_BLOCKING_WRITES approach and
removing everything from the DSP_WaitAudio routine. Also enabling
USE_BLOCKING_WRITES makes it possible to simplify DSP_PlayAudio() because
you don't need to handle the partial writes (the do-while loop).
Attached is a patch against SDL-1.2.7. After these changes SDL will use
OSS as it's designed to be used (make it as simple as possible). This code
should work with all OSS implementations because it uses only the very
fundamental features that have been there since the jurassic times.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 12 Nov 2004 21:39:04 +0000 |
parents | 5bb080d35049 |
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) |