devdraw: drop pre-metal macOS support

We didn't start using Metal until macOS 10.14,
but it was available on 10.13, which is currently
the oldest Apple-supported version of macOS.
Simplify by deleting the old code.
This commit is contained in:
Russ Cox 2020-01-08 19:49:33 -05:00
parent cc3d97d52a
commit f177c0ba18
3 changed files with 5 additions and 1688 deletions

View file

@ -12,9 +12,6 @@ AUTOFRAMEWORK(Cocoa)
void
main(void)
{
if(OSX_VERSION < 100700)
[NSAutoreleasePool new];
[NSApplication sharedApplication];
NSObject<NSApplicationDelegate> *delegate = [appdelegate new];
[NSApp setDelegate:delegate];