mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 11:39:43 +00:00
LibGL: Implement glReadBuffer()
This commit is contained in:
parent
0c6f019285
commit
24e74750d5
Notes:
sideshowbarker
2024-07-18 17:27:30 +09:00
Author: https://github.com/sunverwerth
Commit: 24e74750d5
Pull-request: https://github.com/SerenityOS/serenity/pull/7450
5 changed files with 60 additions and 2 deletions
|
@ -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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue