No project description provided
Project description
ZenGL
ZenGL is a minimalist Python module providing exactly one way to render scenes with OpenGL.
pip install zengl
ZenGL is ...
- high-performance
- simple - buffers, images, pipelines and there you go
- easy-to-learn - it is simply OpenGL with no magic added
- verbose - most common mistakes are catched and reported in a clear and understandable way
- robust - there is no global state or external trouble-maker affecting the render
- backward-compatible - it requires OpenGL 3.3 - it is just enough
- cached - most OpenGL objects are reused between renders
- zen - there is one way to do it
Concept
ZenGL provides a simple way to render from Python. We aim to support headless rendering first, rendering to a window is done by blitting the final image to the screen. By doing this we have full control of what we render. The window does not have to be multisample, and it requires no depth buffer at all.
Offscreen rendering works out of the box on all platforms if the right loader is provided. Loaders implement a load method to resolve a subset of OpenGL 3.3 core. The return value of the the load method is an int, a void pointer to the function implementation. Virtualized, traced and debug environments can be provided by custom loaders. The current implementation uses the glcontext from moderngl to load the OpenGL methods.
ZenGL's main focus is on readability and maintainability. Pipelines in ZenGL are almost entirely immutable and they cannot affect each other expect when one draws on top of the other's result that is totally expected. No global state is affecting the render, if something breaks there is one place to debug.
ZenGL does not use anything beyond OpenGL 3.3 core, not even if the more convenient methods are available. Implementation is kept simple. Usually this is not a bottleneck.
ZenGL does not implement transform feedback, storage buffers or storage images, tesselation, geometry shader and maybe many more. We have a strong reason not to include them in the feature list. They add to complexity and are against ZenGL's main philosophy. ZenGL was built on top experience gathered on real life projects that could never make good use of any of that.
ZenGL is using the same vertex and image format naming as WebGPU and keeping the vertex array definition from ModernGL. ZenGL is not the next version of ModernGL. ZenGL is a simplification of a subset of ModernGL with some extras that was not possible to include in ModernGL.
Future plans include a Vulkan 1.0 backend that was considered when designing and developmenting ZenGL.
Example
import zengl
from PIL import Image
ctx = zengl.context(zengl.loader(headless=True))
size = (1280, 720)
image = ctx.image(size, 'rgba8unorm', samples=1)
triangle = ctx.pipeline(
vertex_shader='''
#version 330
out vec3 v_color;
vec2 positions[3] = vec2[](
vec2(0.0, 0.8),
vec2(-0.6, -0.8),
vec2(0.6, -0.8)
);
vec3 colors[3] = vec3[](
vec3(1.0, 0.0, 0.0),
vec3(0.0, 1.0, 0.0),
vec3(0.0, 0.0, 1.0)
);
void main() {
gl_Position = vec4(positions[gl_VertexID], 0.0, 1.0);
v_color = colors[gl_VertexID];
}
''',
fragment_shader='''
#version 330
in vec3 v_color;
layout (location = 0) out vec4 out_color;
void main() {
out_color = vec4(v_color, 1.0);
}
''',
framebuffer=[image],
topology='triangles',
vertex_count=3,
)
image.clear_value = (1.0, 1.0, 1.0, 1.0)
image.clear()
triangle.render()
Image.frombuffer('RGBA', size, image.read(), 'raw', 'RGBA', 0, -1).save('hello.png')
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
Built Distribution
File details
Details for the file zengl-0.4.1.tar.gz
.
File metadata
- Download URL: zengl-0.4.1.tar.gz
- Upload date:
- Size: 30.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a17ec28d3dd1b9137e076d227c7f61e36f41e81837d65d895b6153680d0900b1 |
|
MD5 | 1a89f95ae59afda1cacc891d3ac68331 |
|
BLAKE2b-256 | 0201541de29483b6b522281bfaf747c9352a8873c0b190d9226174e479282318 |
Provenance
File details
Details for the file zengl-0.4.1-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: zengl-0.4.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 37.4 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 300ab3bb14715cad74b1dc3e835c5844d533b99180170816a909e150eb685548 |
|
MD5 | 8f9170fe20ca72701cf9907c205c1f91 |
|
BLAKE2b-256 | b2e076dd9a610b78174c48886a1fbd11f1ab9ae6f906811de700909e9f54d88e |