mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-27 10:07:56 +00:00
LibGL: Implement glUseProgram
This commit is contained in:
committed by
Andrew Kaster
parent
1812a169b8
commit
69171e7a05
@@ -1043,6 +1043,11 @@ void glTranslatef(GLfloat x, GLfloat y, GLfloat z)
|
||||
g_gl_context->gl_translate(x, y, z);
|
||||
}
|
||||
|
||||
void glUseProgram(GLuint program)
|
||||
{
|
||||
g_gl_context->gl_use_program(program);
|
||||
}
|
||||
|
||||
void glVertex2d(GLdouble x, GLdouble y)
|
||||
{
|
||||
g_gl_context->gl_vertex(x, y, 0.0, 1.0);
|
||||
|
||||
Reference in New Issue
Block a user