mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 02:38:13 +00:00

This adds a shader class to LibSoftGPU and makes use of it when linking GLSL program in LibGL. Also adds actual rendering code to the shader tests.
12 lines
236 B
CMake
12 lines
236 B
CMake
set(SOURCES
|
|
Clipper.cpp
|
|
Device.cpp
|
|
Image.cpp
|
|
PixelConverter.cpp
|
|
Sampler.cpp
|
|
Shader.cpp
|
|
)
|
|
|
|
add_compile_options(-Wno-psabi)
|
|
serenity_lib(LibSoftGPU softgpu)
|
|
target_link_libraries(LibSoftGPU PRIVATE LibCore LibGfx)
|