1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 07:54:58 +00:00

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

View file

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