Trees | Indices | Help |
---|
|
object --+ | utils.proxy.InstanceDescriptorMixin --+ | object --+ | | | utils.objects.StateMixin --+ | Pipeline
Convenience class for rendering pipelines.
Pipeline
s contain a vertex array, a shader, and an
optional framebuffer. Property access and method calls are appropriately
redirected to these objects. Vertex attributes, shader uniforms, and
fragment outputs can be set by their name either in the constructor or by
accessing the corresponding properties on the pipeline.
Vertex attributes can be set to buffer objects or anything that can be
converted to an ArrayBuffer
.
Shader uniforms behave as usual.
Fragment outputs can be set to texture objects.
Attention: In order to guarantee correct functioning of vertex attribute, uniform and fragment output variables, their names must be unique, must not begin with an underscore, and must not collide with the names of any vertex array or framebuffer methods.
Usage examples:
>>> shader = ShaderProgram(...) >>> vertices = [...] >>> colors = [...] >>> elements = [...] >>> texture = Texture2D(...)
>>> pipeline = Pipeline(shader, in_position=vertices, in_color=colors, elements=elements, out_color=texture) >>> pipeline.clear() >>> pipeline.draw()
>>> pipeline = Pipeline(shader, use_framebuffer=False) >>> with pipeline(in_position=vertices, in_color=colors, elements=elements): ... pipeline.draw() >>> with pipeline(in_position=vertices, in_color=colors, elements=elements) as p: ... p.draw() >>> pipeline.draw_with(in_position=vertices, in_color=colors, elements=elements)
>>> pipeline = Pipeline(shader, use_framebuffer=False) >>> vertex_array = VertexArray(...) >>> with pipeline: ... vertex_array.draw()
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from Inherited from |
|
|||
_frozen = False Whether setting of unknown attributes should be interpreted literally or as accessing vertex array and framebuffer properties. |
|
|||
Inherited from |
|
Create a new
To Do:
|
Set an attribute. When When Context properties set here will be set on binding and reset on unbinding the pipeline.
|
Delete an attribute. When Otherwise, if the attribute is a previously set context property, it will be removed from the pipeline.
|
Call draw on Keyword arguments that are known attributes or shader input our output
variable names will be set as properties on To Do:
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Mar 16 17:56:04 2012 | http://epydoc.sourceforge.net |