Mercurial > sdl-ios-xcode
view Makefile.dc @ 1192:54aa9aa32327
To: sdl@libsdl.org
From: Christian Walther <cwalther@gmx.ch>
Date: Fri, 18 Nov 2005 23:39:02 +0100
Subject: [SDL] Mouse position bugs on Mac OS X
The attached patch fixes a few bugs in SDL related to the mouse position
in windowed mode on Mac OS X, reproduced using the attached minimal test
program - at least here on 10.3.9, with SDL CVS from today. Could anyone
test whether the bugs exist and are fixed by the patch on 10.2 and 10.4?
1. When using OpenGL, the vertical mouse positions obtained through
events or SDL_GetMouseState() are off by one.
2. When using OpenGL, SDL_WarpMouse() inverts the y coordinate.
3. Clicks on the topmost pixel row of the window are not recognized.
1 and 2 do not occur in non-OpenGL mode, while 3 does. All three only
occur in windowed mode, not in fullscreen.
The cause for 1 and 3 is that in Cocoa, "the location of the mouse"
seems to be defined as "the location of the top left corner of the mouse
pointer's hot pixel" (this is not documented, it's just what I found out
here), which together with the fact that Cocoa's usual y coordinates
start at the bottom and increase upwards means that the y coordinate of
the mouse runs from 1 to h, not from 0 to h-1, in a window of height h.
If it does work on 10.2 and 10.4 (I'll try to test it as soon as I can,
but at the moment all I have at hand is 10.3.9), can this be applied to
the CVS?
-Christian
To: sdl@libsdl.org
From: Christian Walther <cwalther@gmx.ch>
Date: Mon, 28 Nov 2005 10:41:51 +0100
Subject: [SDL] Re: Mouse position bugs on Mac OS X
I wrote:
> I'll try to test it as soon as I can, but at the moment all I have at hand is 10.3.9
So, here are the results of my tests (with patched and unpatched
frameworks compiled with Xcode 1.5 (gcc 3.3) on 10.3.9):
On 10.1.5, my test program doesn't run because of "Undefined symbols:
SDL undefined reference to _CGMainDisplayID expected to be defined in
Carbon". I guess not supporting 10.1 was a deliberate decision then and
that's OK with me.
On 10.2.8, 10.3.9, and 10.4.0, the bugs exist as described in my
original post and are fixed by my patch. That is, there is no difference
between pre/post 10.3 and the patched version works correctly in all
combinations of GL/non-GL and windowed/fullscreen.
I therefore recommend the patch for inclusion.
-Christian
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 28 Nov 2005 13:58:26 +0000 |
parents | dad72daf44b3 |
children | 11134dc42da8 |
line wrap: on
line source
#GL=1 CC = sh-elf-gcc -ml -m4-single-only AR = sh-elf-ar KOS_BASE=/prog/kos-1.1.7 INCS = -I$(KOS_BASE)/libc/include -I$(KOS_BASE)/include -I$(KOS_BASE)/kernel/arch/dreamcast/include DEFS =-DNO_SIGNAL_H -DENABLE_DC ifdef GL DEFS += -DHAVE_OPENGL TARGET = libSDL_gl.a else TARGET = libSDL.a endif OPTFLAGS=-O2 -fomit-frame-pointer CFLAGS=-D_arch_dreamcast $(DEFS) $(INCS) -Iinclude -Isrc -Isrc/audio -Isrc/cdrom -Isrc/endian -Isrc/events -Isrc/joystick -Isrc/thread/dc -Isrc/thread -Isrc/timer -Isrc/video $(OPTFLAGS) SRCS = \ src/audio/dc/SDL_dcaudio.c \ src/audio/dc/aica.c \ src/audio/SDL_audio.c \ src/audio/SDL_audiocvt.c \ src/audio/SDL_audiodev.c \ src/audio/SDL_audiomem.c \ src/audio/SDL_mixer.c \ src/audio/SDL_wave.c \ src/cdrom/dc/SDL_syscdrom.c \ src/cdrom/SDL_cdrom.c \ src/endian/SDL_endian.c \ src/events/SDL_active.c \ src/events/SDL_events.c \ src/events/SDL_expose.c \ src/events/SDL_keyboard.c \ src/events/SDL_mouse.c \ src/events/SDL_quit.c \ src/events/SDL_resize.c \ src/file/SDL_rwops.c \ src/joystick/dc/SDL_sysjoystick.c \ src/joystick/SDL_joystick.c \ src/SDL.c \ src/SDL_error.c \ src/SDL_fatal.c \ src/SDL_getenv.c \ src/SDL_loadso.c \ src/thread/dc/SDL_syscond.c \ src/thread/dc/SDL_sysmutex.c \ src/thread/dc/SDL_syssem.c \ src/thread/dc/SDL_systhread.c \ src/thread/SDL_thread.c \ src/timer/dc/SDL_systimer.c \ src/timer/SDL_timer.c \ src/video/dc/SDL_dcevents.c \ src/video/dc/SDL_dcvideo.c \ src/video/SDL_blit.c \ src/video/SDL_blit_0.c \ src/video/SDL_blit_1.c \ src/video/SDL_blit_A.c \ src/video/SDL_blit_N.c \ src/video/SDL_bmp.c \ src/video/SDL_cursor.c \ src/video/SDL_gamma.c \ src/video/SDL_pixels.c \ src/video/SDL_RLEaccel.c \ src/video/SDL_stretch.c \ src/video/SDL_surface.c \ src/video/SDL_video.c \ src/video/SDL_yuv.c \ src/video/SDL_yuv_sw.c \ OBJS = $(SRCS:.c=.o) TEST = \ test/checkkeys.c \ test/graywin.c \ test/loopwave.c \ test/testalpha.c \ test/testbitmap.c \ test/testcdrom.c \ test/testerror.c \ test/testgamma.c \ test/testgl.c \ test/testhread.c \ test/testjoystick.c \ test/testkeys.c \ test/testlock.c \ test/testoverlay.c \ test/testpalette.c \ test/testsem.c \ test/testsprite.c \ test/testtimer.c \ test/testtypes.c \ test/testver.c \ test/testvidinfo.c \ test/testwin.c \ test/testwm.c \ test/threadwin.c \ test/torturethread.c \ clean: rm $(OBJS) $(TARGET) : $(OBJS) $(AR) rcs $(TARGET) $(OBJS)