// // 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 { class UnpackRowLengthTest : public ANGLETest<> { … }; TEST_P(UnpackRowLengthTest, RowLength128) { … } TEST_P(UnpackRowLengthTest, RowLength1024) { … } // 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