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