// // Copyright 2019 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. // // EGLRecordableTest.cpp: // Tests of EGL_ANDROID_recordable extension #include <gtest/gtest.h> #include "test_utils/ANGLETest.h" #include "test_utils/angle_test_configs.h" #include "util/EGLWindow.h" usingnamespaceangle; namespace angle { class EGLRecordableTest : public ANGLETest<> { … }; // Test that the extension is always available (it is implemented in ANGLE's frontend). TEST_P(EGLRecordableTest, ExtensionAlwaysAvailable) { … } // Check that the default message filters and callbacks are correct TEST_P(EGLRecordableTest, CheckAllContexts) { … } } // namespace angle ANGLE_INSTANTIATE_TEST_ES2(…);