mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 18:05:07 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
/*
|
|
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "GL/gl.h"
|
|
#include "GLContext.h"
|
|
|
|
extern GL::GLContext* g_gl_context;
|
|
|
|
void glFogfv(GLenum pname, GLfloat* params)
|
|
{
|
|
g_gl_context->gl_fogfv(pname, params);
|
|
}
|