// // Copyright 2018 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. // // RequestExtensionTest: // Tests that extensions can be requested and are disabled by default when using // EGL_ANGLE_request_extension // #include "test_utils/ANGLETest.h" #include "util/EGLWindow.h" namespace angle { class RequestExtensionTest : public ANGLETest<> { … }; // Test that a known requestable extension is disabled by default and make sure it can be requested // if possible TEST_P(RequestExtensionTest, ExtensionsDisabledByDefault) { … } // Test the queries for the requestable extension strings TEST_P(RequestExtensionTest, Queries) { … } // Use this to select which configurations (e.g. which renderer, which GLES major version) these // tests should be run against. ANGLE_INSTANTIATE_TEST_ES2_AND_ES3(…); } // namespace angle