1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:07:35 +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

@ -58,6 +58,11 @@ enum class DepthTestFunction {
Greater,
};
enum Face {
Front = 0,
Back = 1,
};
enum FogMode {
Linear,
Exp,