1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

LibGL+LibGPU: Implement glPointSize

This commit is contained in:
Jelle Raaijmakers 2022-05-08 01:41:30 +02:00 committed by Linus Groh
parent ac3e46b97d
commit 0dcb23ee96
6 changed files with 25 additions and 4 deletions

View file

@ -673,8 +673,7 @@ void glPixelStorei(GLenum pname, GLint param)
void glPointSize(GLfloat size)
{
// FIXME: implement
dbgln_if(GL_DEBUG, "glPointSize({}): unimplemented", size);
g_gl_context->gl_point_size(size);
}
void glPolygonMode(GLenum face, GLenum mode)