blob: ce6698ee38c2a85138d4161f9dcdafb0d7459395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);
|