1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:58:12 +00:00

LibGL: Make shader compilation and program linking always succeed

This will help with testing until the actual compilation infrastructure
is in place.
This commit is contained in:
Stephan Unverwerth 2022-08-28 14:29:32 +02:00 committed by Andrew Kaster
parent fdd76639d8
commit 848f1d2689
2 changed files with 4 additions and 2 deletions

View file

@ -49,7 +49,8 @@ ErrorOr<void> Program::attach_shader(Shader& shader)
ErrorOr<void> Program::link()
{
TODO();
// FIXME: Implement actual program linker
m_link_status = true;
return {};
}