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

LibGL: Implement GL_(CLIENT_)?ACTIVE_TEXTURE context parameters

This commit is contained in:
Jelle Raaijmakers 2022-09-06 17:10:11 +02:00 committed by Linus Groh
parent 00d46e5d77
commit af217b0c3a
3 changed files with 7 additions and 1 deletions

View file

@ -339,7 +339,7 @@ private:
bool m_client_side_vertex_array_enabled { false };
bool m_client_side_color_array_enabled { false };
Vector<bool> m_client_side_texture_coord_array_enabled;
size_t m_client_active_texture = 0;
size_t m_client_active_texture { 0 };
bool m_client_side_normal_array_enabled { false };
NonnullRefPtr<Gfx::Bitmap> m_frontbuffer;