// // 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 "test_utils/ANGLETest.h" usingnamespaceangle; namespace { constexpr char kVS[] = …; constexpr char kFS[] = …; } // namespace class PBOExtensionTest : public ANGLETest<> { … }; TEST_P(PBOExtensionTest, PBOWithOtherTarget) { … } TEST_P(PBOExtensionTest, PBOWithExistingData) { … } // 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(…);