1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:47:34 +00:00

LibGL: Split up GLContext implementation into logical units

This allows for faster rebuilds when the implementation changes.
This commit is contained in:
Jelle Raaijmakers 2022-05-01 02:30:32 +02:00 committed by Andreas Kling
parent 4ace97c550
commit 365fb36108
10 changed files with 2614 additions and 2513 deletions

View file

@ -1,8 +1,15 @@
set(SOURCES
ContextParameter.cpp
GLAPI.cpp
GLContext.cpp
Matrix.cpp
Lighting.cpp
Lists.cpp
Stencil.cpp
Tex/NameAllocator.cpp
Tex/Texture2D.cpp
Textures.cpp
Vertex.cpp
)
serenity_lib(LibGL gl)