Package glitter :: Package misc :: Module transformfeedback :: Class TransformFeedback
[hide private]
[frames] | no frames]

Class TransformFeedback

source code

              object --+        
                       |        
  utils.objects.GLObject --+    
                           |    
 utils.objects.ManagedObject --+
                               |
              object --+       |
                       |       |
  utils.objects.GLObject --+   |
                           |   |
              object --+   |   |
                       |   |   |
utils.objects.StateMixin --+   |
                           |   |
utils.objects.BindableObject --+
                               |
                              TransformFeedback

Instance Methods [hide private]
 
__init__(self, context=None)
Create a new ManagedObject using _generate_id.
source code

Inherited from utils.objects.ManagedObject: __del__

Inherited from utils.objects.BindableObject: __enter__, __exit__, bind

Inherited from utils.objects.StateMixin: __call__

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

Class Variables [hide private]
  _generate_id = _libraries ['libGL.so.1'].glGenTransformFeedbacks
Constructor function.
  _delete_id = _libraries ['libGL.so.1'].glDeleteTransformFeedbacks
Destructor function.
  _db = 'transform_feedbacks'
The name of the corresponding object database in the Context.
  _binding = 'transform_feedback_binding'
Name of the corresponding property in the Context.
  _target = GL_TRANSFORM_FEEDBACK(36386)

Inherited from utils.objects.ManagedObject (private): _type

Instance Variables [hide private]

Inherited from utils.objects.ManagedObject (private): _id

Inherited from utils.objects.BindableObject (private): _stack

Inherited from utils.objects.GLObject (private): _context

Properties [hide private]

Inherited from utils.objects.GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, context=None)
(Constructor)

source code 

Create a new ManagedObject using _generate_id.

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