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

LibGL: Add support for GL_BLEND in glEnable() and glDisable()

This commit is contained in:
Stephan Unverwerth 2021-05-15 22:55:40 +02:00 committed by Linus Groh
parent 279737642c
commit d6e9b433cf
4 changed files with 22 additions and 1 deletions

View file

@ -106,6 +106,7 @@ private:
GLenum m_front_face = GL_CCW;
GLenum m_culled_sides = GL_BACK;
bool m_blend_enabled = false;
GLenum m_blend_source_factor = GL_ONE;
GLenum m_blend_destination_factor = GL_ZERO;