blob: d7ef8b4ec0bfc7f896f110b736f2a24db01214f0 [file]
//
// Copyright (c) The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// driver_utils_mac.mm : provides mac-specific information about current driver.
#include "libANGLE/renderer/driver_utils.h"
#import <Foundation/Foundation.h>
namespace rx
{
OSVersion GetMacOSVersion()
{
OSVersion result;
NSOperatingSystemVersion version = [[NSProcessInfo processInfo] operatingSystemVersion];
result.majorVersion = version.majorVersion;
result.minorVersion = version.minorVersion;
result.patchVersion = version.patchVersion;
return result;
}
}