LibGL: Implement glUseProgram

This commit is contained in:
Stephan Unverwerth 2022-08-28 15:39:44 +02:00 committed by Andrew Kaster
commit 69171e7a05
Notes: sideshowbarker 2024-07-17 08:34:29 +09:00
4 changed files with 25 additions and 0 deletions

View file

@ -825,6 +825,7 @@ GLAPI GLuint glCreateProgram();
GLAPI void glDeleteProgram(GLuint program);
GLAPI void glAttachShader(GLuint program, GLuint shader);
GLAPI void glLinkProgram(GLuint program);
GLAPI void glUseProgram(GLuint program);
#ifdef __cplusplus
}