1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:57:45 +00:00

LibGL: Implement glGetProgramiv

This commit is contained in:
Stephan Unverwerth 2022-08-28 16:34:17 +02:00 committed by Andrew Kaster
parent 424e0a2792
commit 1b7b6e6c91
6 changed files with 56 additions and 0 deletions

View file

@ -499,6 +499,11 @@ void glGetMaterialiv(GLenum face, GLenum pname, GLint* params)
g_gl_context->gl_get_material(face, pname, params, GL_INT);
}
void glGetProgramiv(GLuint program, GLenum pname, GLint* params)
{
g_gl_context->gl_get_program(program, pname, params);
}
GLubyte const* glGetString(GLenum name)
{
return g_gl_context->gl_get_string(name);