summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGL/GLLights.cpp
blob: afd1c746d1702380faa4357c272d87bf83909855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@gmx.de>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "GL/gl.h"
#include "GLContext.h"

extern GL::GLContext* g_gl_context;

void glShadeModel(GLenum mode)
{
    g_gl_context->gl_shade_model(mode);
}