1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:27:35 +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

@ -241,6 +241,7 @@ public:
void gl_attach_shader(GLuint program, GLuint shader);
void gl_link_program(GLuint program);
void gl_use_program(GLuint program);
void gl_get_program(GLuint program, GLenum pname, GLint* params);
private:
void sync_device_config();