1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

LibGL: Implement glReadBuffer()

This commit is contained in:
Stephan Unverwerth 2021-05-24 15:24:49 +02:00 committed by Linus Groh
parent 0c6f019285
commit 24e74750d5
5 changed files with 60 additions and 2 deletions

View file

@ -74,3 +74,8 @@ void glHint(GLenum target, GLenum mode)
{
g_gl_context->gl_hint(target, mode);
}
void glReadBuffer(GLenum mode)
{
g_gl_context->gl_read_buffer(mode);
}