mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-15 23:09:05 +00:00
LibGL: Implement glPolygonOffset
This commit is contained in:
parent
7cbaaf8366
commit
15299b763c
Notes:
sideshowbarker
2024-07-18 04:54:11 +09:00
Author: https://github.com/sunverwerth
Commit: 15299b763c
Pull-request: https://github.com/SerenityOS/serenity/pull/9713
Reviewed-by: https://github.com/Quaker762 ✅
7 changed files with 26 additions and 1 deletions
|
@ -140,6 +140,11 @@ void glPolygonMode(GLenum face, GLenum mode)
|
|||
g_gl_context->gl_polygon_mode(face, mode);
|
||||
}
|
||||
|
||||
void glPolygonOffset(GLfloat factor, GLfloat units)
|
||||
{
|
||||
g_gl_context->gl_polygon_offset(factor, units);
|
||||
}
|
||||
|
||||
void glPixelStorei(GLenum pname, GLint param)
|
||||
{
|
||||
g_gl_context->gl_pixel_store(pname, param);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue