mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 07:17:34 +00:00
LibGL: Add glext.h and lots of new defines in gl.h
These constants are used by GLU and Tux Racer.
This commit is contained in:
parent
2ce73b31b6
commit
70c6907546
4 changed files with 116 additions and 0 deletions
14
Userland/Libraries/LibGL/GL/glext.h
Normal file
14
Userland/Libraries/LibGL/GL/glext.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Jelle Raaijmakers <jelle@gmta.nl>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibGL/GL/glplatform.h>
|
||||
|
||||
#define GL_GLEXT_VERSION 20211115
|
||||
|
||||
typedef void(APIENTRYP PFNGLLOCKARRAYSEXTPROC)(GLint first, GLsizei count);
|
||||
typedef void(APIENTRYP PFNGLUNLOCKARRAYSEXTPROC)(void);
|
Loading…
Add table
Add a link
Reference in a new issue