// // Copyright 2020 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. // // GetTexLevelParameterTest.cpp : Tests of the GL_ANGLE_get_tex_level_parameter extension. #include "test_utils/ANGLETest.h" #include "test_utils/gl_raii.h" namespace angle { class GetTexLevelParameterTest : public ANGLETest<> { … }; // Extension is requestable so it should be disabled by default. TEST_P(GetTexLevelParameterTest, ExtensionStringExposed) { … } // Test various queries exposed by GL_ANGLE_get_tex_level_parameter TEST_P(GetTexLevelParameterTest, 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