glbinding  3.3.0.0
A C++ binding for the OpenGL API, generated using the gl.xml specification.
Loading...
Searching...
No Matches
ProcAddress.h
Go to the documentation of this file.
1
2#pragma once
3
4
5#include <functional>
6
7#include <glbinding/glbinding_api.h>
8
9
10namespace glbinding
11{
12
13
18using ProcAddress = void(*)();
19
24using GetProcAddress = std::function<ProcAddress(const char*)>;
25
26
27} // namespace glbinding
Contains all the classes of glbinding.
std::function< ProcAddress(const char *)> GetProcAddress
The signature for the getProcAddress function.
Definition ProcAddress.h:24
void(*)() ProcAddress
The generic pointer to a function.
Definition ProcAddress.h:18