[spir-v] Add is_integer flag to texture descriptors and update image type handling

This commit is contained in:
CamilleLaVey 2025-11-24 14:27:56 -04:00 committed by Caio Oliveira
parent 04e0b3147b
commit 14d3d5814b
No known key found for this signature in database
GPG key ID: AAAE6C7FD4186B0C
4 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,6 @@
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
@ -38,6 +41,7 @@ struct TextureDefinition {
Id image_type;
u32 count;
bool is_multisample;
bool is_integer;
};
struct TextureBufferDefinition {