// // Copyright 2014 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 "gmock/gmock.h" #include "gtest/gtest.h" #include "common/utilities.h" #include "libANGLE/ImageIndex.h" usingnamespacegl; namespace { static const GLint minMip = …; static const GLint maxMip = …; static const GLint minLayer = …; static const GLint maxLayer = …; TEST(ImageIndexTest, Iterator2D) { … } TEST(ImageIndexTest, IteratorCube) { … } TEST(ImageIndexTest, Iterator3D) { … } TEST(ImageIndexTest, Iterator2DArray) { … } TEST(ImageIndexTest, LayerIterator2DArray) { … } } // namespace