Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
0daed19a
Commit
0daed19a
authored
Aug 25, 2011
by
Ryan C. Gordon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed the MAC_OS_X_VERSION_10_x macros from the 1.3 branch.
parent
c3366d17
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
26 additions
and
35 deletions
+26
-35
SDL_platform.h
include/SDL_platform.h
+0
-9
SDL_coreaudio.h
src/audio/coreaudio/SDL_coreaudio.h
+1
-1
SDL_cocoaclipboard.m
src/video/cocoa/SDL_cocoaclipboard.m
+1
-1
SDL_cocoakeyboard.m
src/video/cocoa/SDL_cocoakeyboard.m
+5
-5
SDL_cocoamodes.m
src/video/cocoa/SDL_cocoamodes.m
+13
-13
SDL_cocoashape.m
src/video/cocoa/SDL_cocoashape.m
+1
-1
SDL_cocoavideo.h
src/video/cocoa/SDL_cocoavideo.h
+1
-1
SDL_cocoawindow.h
src/video/cocoa/SDL_cocoawindow.h
+1
-1
SDL_cocoawindow.m
src/video/cocoa/SDL_cocoawindow.m
+3
-3
No files found.
include/SDL_platform.h
View file @
0daed19a
...
...
@@ -74,15 +74,6 @@
/* lets us know what version of Mac OS X we're compiling on */
#include "AvailabilityMacros.h"
#include "TargetConditionals.h"
#ifndef MAC_OS_X_VERSION_10_4
#define MAC_OS_X_VERSION_10_4 1040
#endif
#ifndef MAC_OS_X_VERSION_10_5
#define MAC_OS_X_VERSION_10_5 1050
#endif
#ifndef MAC_OS_X_VERSION_10_6
#define MAC_OS_X_VERSION_10_6 1060
#endif
#if TARGET_OS_IPHONE
/* if compiling for iPhone */
#undef __IPHONEOS__
...
...
src/audio/coreaudio/SDL_coreaudio.h
View file @
0daed19a
...
...
@@ -32,7 +32,7 @@
#if MACOSX_COREAUDIO
#include <CoreAudio/CoreAudio.h>
#include <CoreServices/CoreServices.h>
#if MAC_OS_X_VERSION_MAX_ALLOWED <=
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED <=
1050
#include <AudioUnit/AUNTComponent.h>
#endif
#endif
...
...
src/video/cocoa/SDL_cocoaclipboard.m
View file @
0daed19a
...
...
@@ -26,7 +26,7 @@
static
NSString
*
GetTextFormat
(
_
THIS
)
{
#if
MAC
_
OS
_
X
_
VERSION
_
MAX
_
ALLOWED
>=
MAC
_
OS
_
X
_
VERSION
_
10
_
6
#if
MAC
_
OS
_
X
_
VERSION
_
MAX
_
ALLOWED
>=
1060
SDL
_
VideoData
*
data
=
(
SDL
_
VideoData
*
)
_
this
->
driverdata
;
if
(
data
->
osversion
>=
0
x1060
)
{
...
...
src/video/cocoa/SDL_cocoakeyboard.m
View file @
0daed19a
...
...
@@ -170,7 +170,7 @@
}
/* Needs long instead of NSInteger for compilation on Mac OS X 10.4 */
#if MAC_OS_X_VERSION_MIN_REQUIRED <
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MIN_REQUIRED <
1050
-
(
long
)
conversationIdentifier
#else
-
(
NSInteger
)
conversationIdentifier
...
...
@@ -481,7 +481,7 @@ HandleModifiers(_THIS, unsigned short scancode, unsigned int modifierFlags)
static
void
UpdateKeymap
(
SDL_VideoData
*
data
)
{
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1050
TISInputSourceRef
key_layout
;
#else
KeyboardLayoutRef
key_layout
;
...
...
@@ -492,7 +492,7 @@ UpdateKeymap(SDL_VideoData *data)
SDL_Keycode
keymap
[
SDL_NUM_SCANCODES
];
/* See if the keymap needs to be updated */
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1050
key_layout
=
TISCopyCurrentKeyboardLayoutInputSource
();
#else
KLGetCurrentKeyboardLayout
(
&
key_layout
);
...
...
@@ -505,7 +505,7 @@ UpdateKeymap(SDL_VideoData *data)
SDL_GetDefaultKeymap
(
keymap
);
/* Try Unicode data first (preferred as of Mac OS X 10.5) */
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1050
CFDataRef
uchrDataRef
=
TISGetInputSourceProperty
(
key_layout
,
kTISPropertyUnicodeKeyLayoutData
);
if
(
uchrDataRef
)
chr_data
=
CFDataGetBytePtr
(
uchrDataRef
);
...
...
@@ -547,7 +547,7 @@ UpdateKeymap(SDL_VideoData *data)
return
;
}
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1050
cleanup
:
CFRelease
(
key_layout
);
#else
...
...
src/video/cocoa/SDL_cocoamodes.m
View file @
0daed19a
...
...
@@ -27,10 +27,10 @@
#if FORCE_OLD_API
#undef MAC_OS_X_VERSION_MIN_REQUIRED
#define MAC_OS_X_VERSION_MIN_REQUIRED
MAC_OS_X_VERSION_10_5
#define MAC_OS_X_VERSION_MIN_REQUIRED
1050
#endif
#if MAC_OS_X_VERSION_MAX_ALLOWED <
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED <
1050
/*
Add methods to get at private members of NSScreen.
Since there is a bug in Apple's screen switching code
...
...
@@ -122,7 +122,7 @@ GetDisplayMode(_THIS, const void *moderef, SDL_DisplayMode *mode)
}
data
->
moderef
=
moderef
;
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
CGDisplayModeRef
vidmode
=
(
CGDisplayModeRef
)
moderef
;
CFStringRef
fmt
=
CGDisplayModeCopyPixelEncoding
(
vidmode
);
...
...
@@ -144,7 +144,7 @@ GetDisplayMode(_THIS, const void *moderef, SDL_DisplayMode *mode)
}
#endif
#if
(MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MIN_REQUIRED < 1060
if
(
!
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
CFDictionaryRef
vidmode
=
(
CFDictionaryRef
)
moderef
;
number
=
CFDictionaryGetValue
(
vidmode
,
kCGDisplayWidth
);
...
...
@@ -181,7 +181,7 @@ static inline void
Cocoa_ReleaseDisplayMode
(
_THIS
,
const
void
*
moderef
)
{
/* We don't own moderef unless we use the 10.6+ APIs. */
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
CGDisplayModeRelease
((
CGDisplayModeRef
)
moderef
);
/* NULL is ok */
}
...
...
@@ -192,7 +192,7 @@ static inline void
Cocoa_ReleaseDisplayModeList
(
_THIS
,
CFArrayRef
modelist
)
{
/* We don't own modelis unless we use the 10.6+ APIs. */
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
CFRelease
(
modelist
);
/* NULL is ok */
}
...
...
@@ -242,13 +242,13 @@ Cocoa_InitModes(_THIS)
continue
;
}
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
moderef
=
CGDisplayCopyDisplayMode
(
displays
[
i
]);
}
#endif
#if
(MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MIN_REQUIRED < 1060
if
(
!
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
moderef
=
CGDisplayCurrentMode
(
displays
[
i
]);
}
...
...
@@ -301,13 +301,13 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display)
SDL_DisplayData
*
data
=
(
SDL_DisplayData
*
)
display
->
driverdata
;
CFArrayRef
modes
=
NULL
;
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
modes
=
CGDisplayCopyAllDisplayModes
(
data
->
display
,
NULL
);
}
#endif
#if
(MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MIN_REQUIRED < 1060
if
(
!
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
modes
=
CGDisplayAvailableModes
(
data
->
display
);
}
...
...
@@ -321,7 +321,7 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display)
const
void
*
moderef
=
CFArrayGetValueAtIndex
(
modes
,
i
);
SDL_DisplayMode
mode
;
if
(
GetDisplayMode
(
_this
,
moderef
,
&
mode
))
{
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
CGDisplayModeRetain
((
CGDisplayModeRef
)
moderef
);
}
...
...
@@ -337,13 +337,13 @@ Cocoa_GetDisplayModes(_THIS, SDL_VideoDisplay * display)
static
CGError
Cocoa_SwitchMode
(
_THIS
,
CGDirectDisplayID
display
,
const
void
*
mode
)
{
#if
(MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
if
(
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
return
CGDisplaySetDisplayMode
(
display
,
(
CGDisplayModeRef
)
mode
,
NULL
);
}
#endif
#if
(MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_6)
#if
MAC_OS_X_VERSION_MIN_REQUIRED < 1060
if
(
!
IS_SNOW_LEOPARD_OR_LATER
(
_this
))
{
return
CGDisplaySwitchToMode
(
display
,
(
CFDictionaryRef
)
mode
);
}
...
...
src/video/cocoa/SDL_cocoashape.m
View file @
0daed19a
...
...
@@ -28,7 +28,7 @@ SDL_WindowShaper*
Cocoa
_
CreateShaper
(
SDL
_
Window
*
window
)
{
SDL
_
WindowData
*
windata
=
(
SDL
_
WindowData
*
)
window
->
driverdata
;
[
windata
->
nswindow
setOpaque
:
NO
]
;
#if
MAC
_
OS
_
X
_
VERSION
_
MIN
_
REQUIRED
>=
MAC
_
OS
_
X
_
VERSION
_
10
_
6
#if
MAC
_
OS
_
X
_
VERSION
_
MIN
_
REQUIRED
>=
1060
[
windata
->
nswindow
setStyleMask
:
NSBorderlessWindowMask
]
;
#endif
SDL
_
WindowShaper
*
result
=
result
=
malloc
(
sizeof
(
SDL
_
WindowShaper
))
;
...
...
src/video/cocoa/SDL_cocoavideo.h
View file @
0daed19a
...
...
@@ -39,7 +39,7 @@
#include "SDL_cocoaopengl.h"
#include "SDL_cocoawindow.h"
#if MAC_OS_X_VERSION_MAX_ALLOWED <
MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED <
1050
#if __LP64__
typedef
long
NSInteger
;
typedef
unsigned
long
NSUInteger
;
...
...
src/video/cocoa/SDL_cocoawindow.h
View file @
0daed19a
...
...
@@ -28,7 +28,7 @@
typedef
struct
SDL_WindowData
SDL_WindowData
;
/* *INDENT-OFF* */
#if MAC_OS_X_VERSION_MIN_REQUIRED >=
MAC_OS_X_VERSION_10_6
#if MAC_OS_X_VERSION_MIN_REQUIRED >=
1060
@interface
Cocoa_WindowListener
:
NSResponder
<
NSWindowDelegate
>
{
#else
@interface
Cocoa_WindowListener
:
NSResponder
{
...
...
src/video/cocoa/SDL_cocoawindow.m
View file @
0daed19a
...
...
@@ -67,7 +67,7 @@ static __inline__ void ConvertNSRect(NSRect *r)
[
window
setAcceptsMouseMovedEvents
:
YES
];
[
view
setNextResponder
:
self
];
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_6
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1060
[
view
setAcceptsTouchEvents
:
YES
];
#endif
}
...
...
@@ -380,7 +380,7 @@ static __inline__ void ConvertNSRect(NSRect *r)
-
(
void
)
handleTouches
:
(
cocoaTouchType
)
type
withEvent
:
(
NSEvent
*
)
event
{
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_6
#if MAC_OS_X_VERSION_MAX_ALLOWED >=
1060
NSSet
*
touches
=
0
;
NSEnumerator
*
enumerator
;
NSTouch
*
touch
;
...
...
@@ -442,7 +442,7 @@ static __inline__ void ConvertNSRect(NSRect *r)
touch
=
(
NSTouch
*
)[
enumerator
nextObject
];
}
#endif
/* MAC_OS_X_VERSION_MAX_ALLOWED >=
MAC_OS_X_VERSION_10_6
*/
#endif
/* MAC_OS_X_VERSION_MAX_ALLOWED >=
1060
*/
}
@end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment