1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 06:37:34 +00:00

LibGL: Implement glGetShaderiv

This commit is contained in:
Stephan Unverwerth 2022-08-28 16:19:42 +02:00 committed by Andrew Kaster
parent 69171e7a05
commit 424e0a2792
7 changed files with 87 additions and 0 deletions

View file

@ -234,6 +234,7 @@ public:
void gl_delete_shader(GLuint shader);
void gl_shader_source(GLuint shader, GLsizei count, GLchar const** string, GLint const* length);
void gl_compile_shader(GLuint shader);
void gl_get_shader(GLuint shader, GLenum pname, GLint* params);
GLuint gl_create_program();
void gl_delete_program(GLuint program);