OpenGL XML API registry parser
Project description
glreg provides functionality to parse and extract data from OpenGL XML API Registry files. Types, enums and functions (commands) in the registry can be enumerated and inspected. This module also provides functions to resolve dependencies and filter APIs in the registry. This makes it useful for generating OpenGL headers and loaders.
Sample code
Import the module:
>>> import glreg
Load a Registry object from a file:
>>> registry = glreg.load(open('gl.xml'))
Generate a simple OpenGL ES 2 C header:
>>> for api in glreg.group_apis(registry, api='gles2', support='gles2'): ... print('#ifndef ' + api.name) ... print('#define ' + api.name) ... print(api.text) ... print('#endif') #ifndef GL_ES_VERSION_2_0 #define GL_ES_VERSION_2_0 #include <KHR/khrplatform.h> typedef khronos_int8_t GLbyte;...
Requirements
Python 2.7+, 3.2+
Documentation
Documentation is available at https://pyglreg.readthedocs.org/
Installation
glreg is available at PyPI. Simply run the following:
# pip install --pre glreg
Or, if you downloaded the source, run the following from the source directory:
# python setup.py install
Development
Please report bugs and feature requests to https://github.com/pyokagan/pyglreg/
License
MIT License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file glreg-0.9.0a3.tar.gz
.
File metadata
- Download URL: glreg-0.9.0a3.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e59db19680fb7c7c2155b8b517c52b3113d345a2ce4dff5103f9ccafc7452c25 |
|
MD5 | 5550f7efaa6902c6129006d645f8e828 |
|
BLAKE2b-256 | 6edc41421d8b4892eeb2110be7e191634bf9b81723b1025b066ba1a888529c95 |