mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -26,7 +26,7 @@ void glColor3f(GLfloat r, GLfloat g, GLfloat b)
|
|||
g_gl_context->gl_color(r, g, b, 1.0);
|
||||
}
|
||||
|
||||
void glColor3fv(const GLfloat* v)
|
||||
void glColor3fv(GLfloat const* v)
|
||||
{
|
||||
g_gl_context->gl_color(v[0], v[1], v[2], 1.0);
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ void glColor4f(GLfloat r, GLfloat g, GLfloat b, GLfloat a)
|
|||
g_gl_context->gl_color(r, g, b, a);
|
||||
}
|
||||
|
||||
void glColor4fv(const GLfloat* v)
|
||||
void glColor4fv(GLfloat const* v)
|
||||
{
|
||||
g_gl_context->gl_color(v[0], v[1], v[2], v[3]);
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ void glColor4ub(GLubyte r, GLubyte g, GLubyte b, GLubyte a)
|
|||
g_gl_context->gl_color(r / 255.0, g / 255.0, b / 255.0, a / 255.0);
|
||||
}
|
||||
|
||||
void glColor4ubv(const GLubyte* v)
|
||||
void glColor4ubv(GLubyte const* v)
|
||||
{
|
||||
g_gl_context->gl_color(v[0] / 255.0, v[1] / 255.0, v[2] / 255.0, v[3] / 255.0);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue