// // 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. // // AstcDecompressor.h: Decodes ASTC-encoded textures. #ifndef IMAGE_UTIL_ASTC_CPU_DECOMPRESSOR_H_ #define IMAGE_UTIL_ASTC_CPU_DECOMPRESSOR_H_ #include <memory> #include <string> namespace angle { class WorkerThreadPool; // This class is responsible for decompressing ASTC textures on the CPU. // This class is thread-safe and all its methods can be called by any thread. class AstcDecompressor { … }; } // namespace angle #endif // IMAGE_UTIL_ASTC_CPU_DECOMPRESSOR_H_