1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 11:45:06 +00:00
serenity/Userland/Libraries/LibGL/CMakeLists.txt
Jesse Buhagiar 7f1cd54b80 LibGL: Implement glFogfv
This currently just sets the fog colour in the rasterizer.
2021-08-25 23:50:54 +04:30

24 lines
453 B
CMake

set(SOURCES
Tex/NameAllocator.cpp
Tex/Sampler2D.cpp
Tex/Texture2D.cpp
Tex/TextureUnit.cpp
Clipper.cpp
GLBlend.cpp
GLColor.cpp
GLContext.cpp
GLFog.cpp
GLLights.cpp
GLLists.cpp
GLMat.cpp
GLTexture.cpp
GLUtils.cpp
GLVert.cpp
GLVertexArrays.cpp
SoftwareGLContext.cpp
SoftwareRasterizer.cpp
DepthBuffer.cpp
)
serenity_lib(LibGL gl)
target_link_libraries(LibGL LibM LibCore LibGfx)