// // Copyright 2015 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. // #include <cmath> #include "test_utils/ANGLETest.h" #include "test_utils/gl_raii.h" usingnamespaceangle; class MaxTextureSizeTest : public ANGLETest<> { … }; TEST_P(MaxTextureSizeTest, SpecificationTexImage) { … } TEST_P(MaxTextureSizeTest, SpecificationTexStorage) { … } TEST_P(MaxTextureSizeTest, RenderToTexture) { … } TEST_P(MaxTextureSizeTest, Render1xTexture) { … } // TODO(geofflang): Fix the dependence on glBlitFramebufferANGLE without checks and assuming the // default framebuffer is BGRA to enable the GL and GLES backends. (http://anglebug.com/42260299) // Use this to select which configurations (e.g. which renderer, which GLES major version) these // tests should be run against. ANGLE_INSTANTIATE_TEST(…); // This test suite is not instantiated on some OSes. GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(…);