LibGL: Implement glReadBuffer()

This commit is contained in:
Stephan Unverwerth 2021-05-24 15:24:49 +02:00 committed by Linus Groh
commit 24e74750d5
Notes: sideshowbarker 2024-07-18 17:27:30 +09:00
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);
}