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

LibGL+LibSoftGPU: Enumize material front/back face selection

This commit is contained in:
Jelle Raaijmakers 2022-01-16 02:09:27 +01:00 committed by Andreas Kling
parent 64dfb3a28f
commit 3609ffc450
5 changed files with 24 additions and 16 deletions

View file

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