Skip to content

Commit

Permalink
Add SDKs for 10.12 and 10.13
Browse files Browse the repository at this point in the history
  • Loading branch information
porkchopsandwiches committed Aug 5, 2017
1 parent 2d31dd8 commit c2c56fa
Show file tree
Hide file tree
Showing 51,107 changed files with 13,063,987 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
38 changes: 38 additions & 0 deletions MacOSX10.12.sdk/SDKSettings.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CanonicalName</key>
<string>macosx10.12</string>
<key>CustomProperties</key>
<dict>
<key>KERNEL_EXTENSION_HEADER_SEARCH_PATHS</key>
<string>$(KERNEL_FRAMEWORK)/PrivateHeaders $(KERNEL_FRAMEWORK_HEADERS)</string>
</dict>
<key>DefaultProperties</key>
<dict>
<key>MACOSX_DEPLOYMENT_TARGET</key>
<string>10.12</string>
<key>PLATFORM_NAME</key>
<string>macosx</string>
<key>DEFAULT_KEXT_INSTALL_PATH</key>
<string>$(LIBRARY_KEXT_INSTALL_PATH)</string>
</dict>
<key>DisplayName</key>
<string>macOS 10.12</string>
<key>MaximumDeploymentTarget</key>
<string>10.12</string>
<key>MinimalDisplayName</key>
<string>10.12</string>
<key>MinimumSupportedToolsVersion</key>
<string>3.2</string>
<key>SupportedBuildToolComponents</key>
<array>
<string>com.apple.compilers.gcc.headers.4_2</string>
</array>
<key>Version</key>
<string>10.12</string>
<key>isBaseSDK</key>
<string>YES</string>
</dict>
</plist>
16 changes: 16 additions & 0 deletions MacOSX10.12.sdk/System/Library/CoreServices/SystemVersion.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ProductBuildVersion</key>
<string>16C58</string>
<key>ProductCopyright</key>
<string>1983-2016 Apple Inc.</string>
<key>ProductName</key>
<string>Mac OS X</string>
<key>ProductUserVisibleVersion</key>
<string>10.12.2</string>
<key>ProductVersion</key>
<string>10.12.2</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
--- !tapi-tbd-v2
archs: [ i386, x86_64 ]
uuids: [ 'i386: 4334843B-E8CF-3E2D-B878-528047D9967C', 'x86_64: E4A1E7B9-9C37-3244-8415-F0F028CB2859' ]
platform: macosx
install-name: /System/Library/Frameworks/AGL.framework/Versions/A/AGL
objc-constraint: none
exports:
- archs: [ i386, x86_64 ]
symbols: [ _aglChoosePixelFormat, _aglChoosePixelFormatCFM, _aglConfigure,
_aglConfigureCFM, _aglCopyContext, _aglCreateContext, _aglCreateContextCFM,
_aglCreatePBuffer, _aglCreatePixelFormat, _aglCreatePixelFormatCFM,
_aglDescribePBuffer, _aglDescribePixelFormat, _aglDescribeRenderer,
_aglDestroyContext, _aglDestroyPBuffer, _aglDestroyPixelFormat,
_aglDestroyRendererInfo, _aglDevicesOfPixelFormat, _aglDisable,
_aglDisplaysOfPixelFormat, _aglEnable, _aglErrorString, _aglGetCGLContext,
_aglGetCGLPixelFormat, _aglGetCurrentContext, _aglGetDrawable,
_aglGetError, _aglGetHIViewRef, _aglGetInteger, _aglGetPBuffer,
_aglGetVersion, _aglGetVirtualScreen, _aglGetWindowRef, _aglIsEnabled,
_aglNextPixelFormat, _aglNextRendererInfo, _aglQueryRendererInfo,
_aglQueryRendererInfoCFM, _aglQueryRendererInfoForCGDirectDisplayIDs,
_aglResetLibrary, _aglSetCurrentContext, _aglSetDrawable,
_aglSetFullScreen, _aglSetHIViewRef, _aglSetInteger, _aglSetOffScreen,
_aglSetPBuffer, _aglSetVirtualScreen, _aglSetWindowRef, _aglSurfaceTexture,
_aglSwapBuffers, _aglTexImagePBuffer, _aglUpdateContext, _aglUseFont,
_glmCalloc, _glmCopy, _glmDCBAlloc, _glmDCBFree, _glmDCBRealloc,
_glmFree, _glmGetError, _glmGetInteger, _glmMalloc, _glmPageFreeAll,
_glmRealloc, _glmReportMemoryStatus, _glmResetMemoryStatus,
_glmSetDebugInfo, _glmSetDouble, _glmSetFunc, _glmSetInteger,
_glmSetMode, _glmSetUByte, _glmSetUInt, _glmSetUShort, _glmVecAlloc,
_glmVecFree, _glmVecRealloc, _glmZero ]
...

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
File: AGL/aglContext.h
Contains: Data type for internal contexts, for use with internal renderer interface.
Version: Technology: Mac OS 9
Release: GM
Copyright: (c) 2000-2010 Apple, Inc. All rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/

#ifndef _AGLCONTEXT_H
#define _AGLCONTEXT_H

#include <OpenGL/OpenGLAvailability.h>
#include <OpenGL/gliContext.h>
#include <OpenGL/gliDispatch.h>

#ifdef __cplusplus
extern "C" {
#endif


/*
** Opaque declaration for private AGLContext data.
*/
typedef struct __AGLPrivateRec *AGLPrivate OPENGL_DEPRECATED(10_0, 10_9);

/*
** AGLContext structure.
*/
struct __AGLContextRec {
GLIContext rend;
GLIFunctionDispatch disp;
AGLPrivate priv;
} OPENGL_DEPRECATED(10_0, 10_9);


#ifdef __cplusplus
}
#endif

#endif /* _AGLCONTEXT_H */
Loading

0 comments on commit c2c56fa

Please sign in to comment.