1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 03:08:13 +00:00

LibGL: Implement glTexEnvf

This controls how fetched texels are combined with the color that was
produced by a preceding texture unit or with the vertex color if it is
the first texture unit.

Currently only a small subset of possible combine modes is implemented
as required by glquake.
This commit is contained in:
Stephan Unverwerth 2021-08-21 13:59:13 +02:00 committed by Andreas Kling
parent 19a08ff187
commit b54573739c
7 changed files with 66 additions and 7 deletions

View file

@ -46,3 +46,8 @@ void glTexParameterf(GLenum target, GLenum pname, GLfloat param)
{
g_gl_context->gl_tex_parameter(target, pname, param);
}
void glTexEnvf(GLenum target, GLenum pname, GLfloat param)
{
g_gl_context->gl_tex_env(target, pname, param);
}