mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-18 00:48:07 +02:00
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Reviewed-by: Mary Guillemard <mary.guillemard@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32529>
13 lines
291 B
C
13 lines
291 B
C
/*
|
|
* Copyright 2024 Valve Corporation
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#include "agx_pack.h"
|
|
|
|
#pragma once
|
|
|
|
struct libagx_decompress_images {
|
|
struct agx_texture_packed compressed;
|
|
struct agx_pbe_packed uncompressed;
|
|
};
|
|
static_assert(sizeof(struct libagx_decompress_images) == 48);
|