blob: a41aaa58c86c37f60a3d46c77e681f231d94ae6f [file] [log] [blame]
//
// Copyright 2021 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_ios.mm : provides ios-specific information about current driver.
#include "libANGLE/renderer/driver_utils.h"
#import <Foundation/Foundation.h>
namespace rx
{
OSVersion GetiOSVersion()
{
OSVersion result;
NSOperatingSystemVersion version = [[NSProcessInfo processInfo] operatingSystemVersion];
result.majorVersion = static_cast<int>(version.majorVersion);
result.minorVersion = static_cast<int>(version.minorVersion);
result.patchVersion = static_cast<int>(version.patchVersion);
return result;
}
}