mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
LibGL: Implement glScissor()
This commit is contained in:
parent
6dd2ebfe8e
commit
bb58f6ccab
9 changed files with 83 additions and 10 deletions
|
@ -154,3 +154,8 @@ void glPixelStorei(GLenum pname, GLint param)
|
|||
{
|
||||
g_gl_context->gl_pixel_store(pname, param);
|
||||
}
|
||||
|
||||
void glScissor(GLint x, GLint y, GLsizei width, GLsizei height)
|
||||
{
|
||||
g_gl_context->gl_scissor(x, y, width, height);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue