annotate src/main/macosx/Info.plist.in @ 4392:2b8c1aea633b SDL-1.2

Fixed bug #898 Jeremiah Morris 2009-12-09 16:07:17 PST No-op GlobalToLocal translations in fullscreen mode On my MacBook Pro running 10.6, I noticed a small upward bias on mouse movement in a fullscreen SDL application. The app uses WarpCursor and GetMouseState in a loop to measure relative movement. I tracked it down to NSWindow's convertBaseToScreen: routine, which added a 2-pixel offset on the Y coordinate instead of the expected (+0,+0) translation. In fullscreen mode, QZ_PrivateWarpCursor() does not translate the desired position through QZ_PrivateGlobalToLocal() before passing it to the Core Graphics system. However, QZ_GetMouseLocation() does call the reverse QZ_PrivateLocalToGlobal() even in fullscreen mode. This asymmetry caused problems each time the mouse was moved.
author Sam Lantinga <slouken@libsdl.org>
date Fri, 11 Dec 2009 15:31:37 +0000
parents ba9e0fcc2ae2
children
rev   line source
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 <plist version="0.9">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4 <dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 <key>CFBundleDevelopmentRegion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6 <string>English</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 <key>CFBundleExecutable</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 <string>@EXECUTABLE_NAME@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9 <key>CFBundleInfoDictionaryVersion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 <string>6.0</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 <key>CFBundleName</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 <string>@PACKAGE@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13 <key>CFBundlePackageType</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14 <string>APPL</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 <key>CFBundleShortVersionString</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 <string>@VERSION@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 <key>CFBundleSignature</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18 <string>????</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 <key>NSMainNibFile</key>
194
ba9e0fcc2ae2 Oops, back out that SDL_main -> SDLMain conversion
Sam Lantinga <slouken@libsdl.org>
parents: 191
diff changeset
20 <string>SDLMain.nib</string>
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 <key>NSPrincipalClass</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 <string>NSApplication</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23 </dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24 </plist>