Mercurial > sdl-ios-xcode
annotate src/video/Makefile.am @ 1259:36f24cdfcda7
te: Thu, 17 Apr 2003 11:25:26 -0700
From: "Jim"
Subject: [SDL] Frame buffer patches...
Would seem that GCC 3.2.2 promotes all signed values to unsigned if any single vlaue is unsigned in an expression...
for instance when calculating an elo touch position....evertyhign is an (int) except for cach_vinfo.xres which is unsigned. THerefore if y
ou reverse the SDL_ELO_MIN_X and SDL_ELO_MAX_X values the resulging negative value pegs the expression to it's max. Attached it the accumu
lated patch to typecast the unsigned values to (int)
- *dx = (cache_vinfo.xres - (cache_vinfo.xres * (input_x - ELO_MIN_X)) / width);
+ *dx = ((int)cache_vinfo.xres - ((int)cache_vinfo.xres * (input_x - ELO_MIN_X)) / width);
and also to provide quite failure to operations which have the screen currently locked...
The touch screen I'm using the original values were exactly opposite of any position I touched on the screen - evaluating the math the expr
ession SHOULD have handled reversing the min and max values - and after casting the unsigned .xres and .yres to a signed int - worked well.
..
Jim
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 24 Jan 2006 06:36:43 +0000 |
parents | 86d0d01290ea |
children | 0175d3eeae89 |
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 \ |
1251
86d0d01290ea
Updated Windows CE/PocketPC support...adds GAPI driver, landscape mode,
Ryan C. Gordon <icculus@icculus.org>
parents:
1250
diff
changeset
|
12 ataricommon xbios gem dc qtopia XFree86 wscons gapi \ |
1250
a4d515d0fc3a
Fixed up build script to catch some of the newer files in a "make dist" run.
Ryan C. Gordon <icculus@icculus.org>
parents:
1187
diff
changeset
|
13 ipod os2fslib |
0 | 14 |
15 DRIVERS = @VIDEO_DRIVERS@ | |
16 | |
17 # Include the architecture-independent sources | |
18 COMMON_SRCS = \ | |
19 SDL_RLEaccel.c \ | |
20 SDL_RLEaccel_c.h \ | |
21 SDL_blit.c \ | |
22 SDL_blit.h \ | |
23 SDL_blit_0.c \ | |
24 SDL_blit_1.c \ | |
25 SDL_blit_A.c \ | |
26 SDL_blit_N.c \ | |
27 SDL_bmp.c \ | |
28 SDL_cursor.c \ | |
29 SDL_cursor_c.h \ | |
30 SDL_gamma.c \ | |
31 SDL_glfuncs.h \ | |
32 SDL_leaks.h \ | |
33 SDL_memops.h \ | |
34 SDL_pixels.c \ | |
35 SDL_pixels_c.h \ | |
36 SDL_surface.c \ | |
37 SDL_stretch.c \ | |
38 SDL_stretch_c.h \ | |
39 SDL_sysvideo.h \ | |
40 SDL_video.c \ | |
41 SDL_yuv.c \ | |
42 SDL_yuvfuncs.h \ | |
43 SDL_yuv_sw.c \ | |
44 SDL_yuv_sw_c.h \ | |
45 SDL_yuv_mmx.c \ | |
689
5bb080d35049
Date: Tue, 19 Aug 2003 17:57:00 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
630
diff
changeset
|
46 mmx.h \ |
0 | 47 blank_cursor.h \ |
48 default_cursor.h | |
49 | |
50 libvideo_la_SOURCES = $(COMMON_SRCS) | |
51 libvideo_la_LIBADD = $(DRIVERS) | |
52 libvideo_la_DEPENDENCIES = $(DRIVERS) |