// // Copyright 2022 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. // // KTXCompressedTextureTest.cpp: Tests of reading compressed texture stored in // .ktx formats #include "image_util/loadimage.h" #include "test_utils/ANGLETest.h" #include "test_utils/gl_raii.h" #include "media/pixel.inc" usingnamespaceangle; class KTXCompressedTextureTest : public ANGLETest<> { … }; // Verify that ANGLE can store and sample the ETC1 compressed texture stored in // KTX container TEST_P(KTXCompressedTextureTest, CompressedTexImageETC1) { … } ANGLE_INSTANTIATE_TEST_ES2_AND_ES3(…);