1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

LibGL: Implement glFogi

This commit is contained in:
Jesse Buhagiar 2021-08-25 01:21:54 +10:00 committed by Ali Mohammad Pur
parent f55d2a22af
commit d73cc3d0eb
6 changed files with 27 additions and 0 deletions

View file

@ -40,6 +40,7 @@ struct RasterizerOptions {
0.0f,
};
GLfloat fog_density { 1.0f };
GLenum fog_mode { GL_EXP };
};
class SoftwareRasterizer final {