amdgpu: Add some resource bits for Neo mode. (#2035)

This commit is contained in:
squidbus 2025-01-03 12:25:20 -08:00 committed by GitHub
parent 9434cae458
commit c2be12f009
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View file

@ -263,7 +263,15 @@ struct Image {
u64 min_lod_warn : 12;
u64 counter_bank_id : 8;
u64 lod_hw_cnt_en : 1;
u64 : 43;
/// Neo-mode only
u64 compression_en : 1;
/// Neo-mode only
u64 alpha_is_on_msb : 1;
/// Neo-mode only
u64 color_transform : 1;
/// Neo-mode only
u64 alt_tile_mode : 1;
u64 : 39;
static constexpr Image Null() {
Image image{};