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

LibGL: Implement the GL_DITHER parameter

This commit is contained in:
Jelle Raaijmakers 2021-12-01 22:27:48 +01:00 committed by Andreas Kling
parent b89524c981
commit a06b69c5b5
3 changed files with 13 additions and 0 deletions

View file

@ -196,6 +196,8 @@ private:
GLenum m_alpha_test_func = GL_ALWAYS;
GLclampf m_alpha_test_ref_value = 0;
bool m_dither_enabled { true };
// Stencil configuration
bool m_stencil_test_enabled { false };