Package glitter :: Package utils :: Module objects :: Class BindableObject
[hide private]
[frames] | no frames]

Class BindableObject

source code

object --+    
         |    
  GLObject --+
             |
object --+   |
         |   |
StateMixin --+
             |
            BindableObject
Known Subclasses:

Base class for objects that can be bound.

When the object is bound, it returns the object that was previously bound to the same target.

BindableObject instances can be used in with statements so that binding and resetting the previous state happens automatically.

If subclasses define the methods _on_bind or _on_release, these will be called by the binding handler in the context whenever the instance is bound or unbound, respectively.

If subclasses define a property _bind_value, this value will be passed to the binding function instead of self.

Binding of an object to different targets (e.g. buffers that are bound to different targets, framebuffers that are bound for reading or drawing, and textures that are bound to different texture image units) is not covered by the BindableObject class.

Instance Methods [hide private]
 
__init__(self, context=None)
Create a new BindableObject.
source code
 
bind(self)
Bind the object and return the previously bound object.
source code
 
__enter__(self)
Called when a with statement is entered.
source code
 
__exit__(self, type, value, traceback)
Called when a with statement is exited.
source code

Inherited from StateMixin: __call__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  _binding = NotImplemented
Name of the corresponding property in the Context.
  _on_bind = NotImplemented
Function to call before binding.
  _on_release = NotImplemented
Function to call after releasing.
  _bind_value = NotImplemented
Value to pass to the _binding property.
Instance Variables [hide private]
  _stack
A stack for storing previous bindings within with statements.

Inherited from GLObject (private): _context

Properties [hide private]

Inherited from GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, context=None)
(Constructor)

source code 

Create a new BindableObject.

Parameters:
  • context (Context) - The parent context.
Overrides: object.__init__

bind(self)

source code 

Bind the object and return the previously bound object.

Binding is executed by setting the parent Context's property named in _binding.

Returns:
The previous value of the property.

__enter__(self)

source code 

Called when a with statement is entered.

Activates the parent Context, calls bind and stores the returned value on the _stack.

__exit__(self, type, value, traceback)

source code 

Called when a with statement is exited.

Restores the previous binding from the _stack by setting the attribute named in _binding in the parent Context and deactivates the parent Context.


Class Variable Details [hide private]

_binding

Name of the corresponding property in the Context.

Example: "array_buffer_binding"

Value:
NotImplemented

_on_bind

Function to call before binding.

ShaderPrograms, for example, bind textures here.

Value:
NotImplemented

_on_release

Function to call after releasing.

ShaderPrograms, for example, release textures here.

Value:
NotImplemented

_bind_value

Value to pass to the _binding property.

If NotImplemented, self will be used.

Value:
NotImplemented