LibVirtGPU: Add enum for Gallium texture formats

This commit is contained in:
Stephan Unverwerth 2022-12-21 16:08:03 +01:00 committed by Andreas Kling
parent 0993aba321
commit 65a1ebcccf
Notes: sideshowbarker 2024-07-17 05:58:46 +09:00

View file

@ -212,6 +212,10 @@ enum class ShaderType : u32 {
SHADER_TYPES
};
enum class PipeFormat : u32 {
R32G32B32_FLOAT = 30
};
}
}