1 /* 2 * Copyright 2024 Valve Corporation 3 * SPDX-License-Identifier: MIT 4 */ 5 #include "agx_pack.h" 6 7 #pragma once 8 9 struct libagx_decompress_images { 10 struct agx_texture_packed compressed; 11 struct agx_pbe_packed uncompressed; 12 }; 13 static_assert(sizeof(struct libagx_decompress_images) == 48); 14