Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/src/tests/test_expectations/GPUTestConfig_mac.h
1693 views
1
//
2
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
3
// Use of this source code is governed by a BSD-style license that can be
4
// found in the LICENSE file.
5
//
6
// GPUTestConfig_mac.h:
7
// Helper functions for GPUTestConfig that have to be compiled in ObjectiveC++
8
//
9
10
#ifndef TEST_EXPECTATIONS_GPU_TEST_CONFIG_MAC_H_
11
#define TEST_EXPECTATIONS_GPU_TEST_CONFIG_MAC_H_
12
13
#include <stdint.h>
14
15
namespace angle
16
{
17
18
void GetOperatingSystemVersionNumbers(int32_t *majorVersion, int32_t *minorVersion);
19
20
} // namespace angle
21
22
#endif // TEST_EXPECTATIONS_GPU_TEST_CONFIG_MAC_H_
23
24