mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
LibGL: Implement glGetDoublev
This commit is contained in:
parent
6d4a5a40a0
commit
40724a426f
5 changed files with 61 additions and 40 deletions
|
@ -100,16 +100,21 @@ void glReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format
|
|||
g_gl_context->gl_read_pixels(x, y, width, height, format, type, pixels);
|
||||
}
|
||||
|
||||
void glGetFloatv(GLenum pname, GLfloat* params)
|
||||
{
|
||||
g_gl_context->gl_get_floatv(pname, params);
|
||||
}
|
||||
|
||||
void glGetBooleanv(GLenum pname, GLboolean* data)
|
||||
{
|
||||
g_gl_context->gl_get_booleanv(pname, data);
|
||||
}
|
||||
|
||||
void glGetDoublev(GLenum pname, GLdouble* params)
|
||||
{
|
||||
g_gl_context->gl_get_doublev(pname, params);
|
||||
}
|
||||
|
||||
void glGetFloatv(GLenum pname, GLfloat* params)
|
||||
{
|
||||
g_gl_context->gl_get_floatv(pname, params);
|
||||
}
|
||||
|
||||
void glGetIntegerv(GLenum pname, GLint* data)
|
||||
{
|
||||
g_gl_context->gl_get_integerv(pname, data);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue