1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:47:35 +00:00

LibGL: Implement glColor4(ub,f)v

This commit is contained in:
Ali Mohammad Pur 2021-04-24 18:11:22 +04:30 committed by Andreas Kling
parent 193b53344a
commit eff3c8a954
2 changed files with 24 additions and 0 deletions

View file

@ -14,3 +14,23 @@ void glColor3f(GLfloat r, GLfloat g, GLfloat b)
{
g_gl_context->gl_color(r, g, b, 1.0);
}
void glColor4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a)
{
g_gl_context->gl_color(r, g, b, a);
}
void glColor4fv(const GLfloat* v)
{
g_gl_context->gl_color(v[0], v[1], v[2], v[3]);
}
void glColor4ub(GLubyte r, GLubyte g, GLubyte b, GLubyte a)
{
g_gl_context->gl_color(r / 255.0f, g / 255.0f, b / 255.0f, a / 255.0f);
}
void glColor4ubv(const GLubyte* v)
{
g_gl_context->gl_color(v[0] / 255.0f, v[1] / 255.0f, v[2] / 255.0f, v[3] / 255.0f);
}