Package glitter :: Package arrays :: Module basebuffer :: Class BaseBuffer
[hide private]
[frames] | no frames]

Class BaseBuffer

source code

              object --+        
                       |        
  utils.objects.GLObject --+    
                           |    
 utils.objects.ManagedObject --+
                               |
              object --+       |
                       |       |
  utils.objects.GLObject --+   |
                           |   |
              object --+   |   |
                       |   |   |
utils.objects.StateMixin --+   |
                           |   |
utils.objects.BindableObject --+
                               |
                              BaseBuffer
Known Subclasses:

Instance Methods [hide private]
 
__init__(self, data=None, shape=None, dtype=None, usage=None, context=None)
Create a new ManagedObject using _generate_id.
source code
 
__len__(self) source code
 
get_data(self) source code
 
set_data(self, data=None, shape=None, dtype=None, usage=None) 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]
  _db = 'buffers'
The name of the corresponding object database in the Context.
  _delete_id = _libraries ['libGL.so.1'].glDeleteBuffers
Destructor function.
  _generate_id = _libraries ['libGL.so.1'].glGenBuffers
Constructor function.
  drawmodes = Enum(POINTS, LINES, LINE_LOOP, LINE_STRIP, TRIANGL...
  usages = Enum(STREAM_DRAW, STREAM_READ, STREAM_COPY, STATIC_DR...

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]
  _size
  data
  dtype
  shape
  usage

Inherited from utils.objects.GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, data=None, shape=None, dtype=None, usage=None, context=None)
(Constructor)

source code 

Create a new ManagedObject using _generate_id.

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

Class Variable Details [hide private]

drawmodes

Value:
Enum(POINTS, LINES, LINE_LOOP, LINE_STRIP, TRIANGLES, TRIANGLE_STRIP, \
TRIANGLE_FAN, LINES_ADJACENCY, LINE_STRIP_ADJACENCY, TRIANGLES_ADJACEN\
CY, TRIANGLE_STRIP_ADJACENCY, PATCHES)

usages

Value:
Enum(STREAM_DRAW, STREAM_READ, STREAM_COPY, STATIC_DRAW, STATIC_READ, \
STATIC_COPY, DYNAMIC_DRAW, DYNAMIC_READ, DYNAMIC_COPY)

Property Details [hide private]

_size

Get Method:
unreachable._size(self)

data

Get Method:
unreachable.data(self)
Set Method:
unreachable.data(self, data)

dtype

Get Method:
unreachable.dtype(self)

shape

Get Method:
unreachable.shape(self)

usage

Get Method:
unreachable.usage(self)