- Load XML from Khronos repository
- Generate C++ API binding from XML
Currently available profiles for loading and generating (in subdirectory profiles
):
gl.json
for the OpenGL API (results are deployed in glbinding)gles.json
for the OpenGL ES API (results are deployed in glesbinding)glsc.json
for the OpenGL SC API (results are deployed in glscbinding)egl.json
for the EGL API (results are deployed in eglbinding)
python3 update.py -p "profiles/gl.json"
python3 update.py -p "profiles/gles.json"
python3 update.py -p "profiles/glsc.json"
python3 update.py -p "profiles/egl.json"
python3 update.py -p "profiles/vk.json"
python3 generate.py -p "profiles/gl.json" -d "../glbinding/source"
python3 generate.py -p "profiles/gles.json" -d "../glesbinding/source"
python3 generate.py -p "profiles/glsc.json" -d "../glscbinding/source"
python3 generate.py -p "profiles/egl.json" -d "../eglbinding/source"
python3 generate.py -p "profiles/vk.json" -d "../vkbinding/source"
A profile file is a JSON file with a flat layout, although semantic groups are intended. The currently supported tags are:
- API specification
sourceUrl
: The url to download the API specificationsourceFile
: The intermediate file name to store the API specificationapiIdentifier
: For multi-API specification files, specifies the one API to select
- Code Generation
bindingNamespace
: The identifier for the subdirectories and C++ binding namespacebaseNamespace
: The C++ namespace for the generated APIcoreProfileSince
: The version of core profile introduction (e.g., 3.2 for OpenGL)multiContext
: Set to true if the API supports multiple contextsbooleanWidth
: The width of a boolean in this API (may be either 8 or 32)
More options are subject to future development. Ideas and requirements are welcomed.
{
"": "API specification",
"apiIdentifier": "gl",
"sourceUrl": "https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/master/xml/gl.xml",
"sourceFile": "gl.xml",
"": "Code Generation",
"bindingNamespace": "glbinding",
"baseNamespace": "gl",
"coreProfileSince": "3.2",
"multiContext": true,
"booleanWidth": 8
}
- Python 3
- jinja2