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 // This file includes APIs to detect whether certain Apple renderer is availabe for testing. 7 // 8 9 #ifndef ANGLE_TEST_INSTANTIATE_APPLE_H_ 10 #define ANGLE_TEST_INSTANTIATE_APPLE_H_ 11 12 namespace angle 13 { 14 15 bool IsMetalRendererAvailable(); 16 17 } // namespace angle 18 19 #endif // ANGLE_TEST_INSTANTIATE_APPLE_H_ 20