1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:57:35 +00:00

LibGL: Make MaterialFace a simple u8 enum

Now we don't need to use `to_underlying` everywhere.
This commit is contained in:
Jelle Raaijmakers 2022-01-13 02:59:46 +01:00 committed by Andreas Kling
parent 58e025ac08
commit c03b21f0ea
2 changed files with 9 additions and 9 deletions

View file

@ -41,7 +41,7 @@ struct ContextParameter {
} value;
};
enum class MaterialFace : u8 {
enum MaterialFace : u8 {
Front = 0,
Back = 1,
};