mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 19:45:08 +00:00

At the moment we just check if we *can* render a simple triangle, we do not yet actually test if the image is indeed the triangle we wanted. This test also outputs the rendered image when GL_DEBUG is enabled to a file called "picture.bmp" for manual verification. Co-authored-by: sunverwerth <s.unverwerth@serenityos.org>
7 lines
138 B
CMake
7 lines
138 B
CMake
set(TEST_SOURCES
|
|
TestRender.cpp
|
|
)
|
|
|
|
foreach(source IN LISTS TEST_SOURCES)
|
|
serenity_test("${source}" LibGL LIBS LibGL)
|
|
endforeach()
|