Package glitter :: Package shaders :: Module shaderprogram :: Class ShaderProgram
[hide private]
[frames] | no frames]

Class ShaderProgram

source code

                     object --+        
                              |        
         utils.objects.GLObject --+    
                                  |    
        utils.objects.ManagedObject --+
                                      |
                     object --+       |
                              |       |
         utils.objects.GLObject --+   |
                                  |   |
                     object --+   |   |
                              |   |   |
       utils.objects.StateMixin --+   |
                                  |   |
       utils.objects.BindableObject --+
                                      |
                         object --+   |
                                  |   |
utils.proxy.InstanceDescriptorMixin --+
                                      |
                                     ShaderProgram

Instance Methods [hide private]
 
__init__(self, shaders=[], vertex=[], tess_control=[], tess_evaluation=[], geometry=[], fragment=[], link=None, context=None, **variables)
Create a new ManagedObject using _generate_id.
source code
 
__setattr__(self, name, value)
x.__setattr__('name', value) <==> x.name = value
source code
 
_on_bind(self)
Function to call before binding.
source code
 
_on_release(self)
Function to call after releasing.
source code
 
_attach(self, shader) source code
 
_detach(self, shader) source code
 
_get_texture_unit(self, name) source code
 
_get_active_X(self, getter, location_getter, max_length, index) source code
 
_get_active_attribute(self, index) source code
 
_get_active_attributes(self) source code
 
_get_active_uniform(self, index) source code
 
_get_active_uniforms(self) source code
 
_group_structs(self, lst, make_variable, make_struct, coerce_array) source code
 
link(self) source code
 
validate(self) source code
 
has_attribute_location(self, name) source code
 
get_attribute_location(self, name) source code
 
has_frag_data_location(self, name) source code
 
get_frag_data_location(self, name) source code

Inherited from utils.objects.ManagedObject: __del__

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

Inherited from utils.objects.StateMixin: __call__

Inherited from utils.proxy.InstanceDescriptorMixin: __getattribute__

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

Class Variables [hide private]
  _generate_id = _libraries ['libGL.so.1'].glCreateProgram
Constructor function.
  _delete_id = _libraries ['libGL.so.1'].glDeleteProgram
Destructor function.
  _db = 'shader_programs'
The name of the corresponding object database in the Context.
  _binding = 'current_program'
Name of the corresponding property in the Context.
  transform_feedback_buffer_modes = Enum(INTERLEAVED_ATTRIBS, SE...
  _frozen = False

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

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

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]
ListProxy shaders
The list of currently attached shaders.
string _log
The current shader info log.

Inherited from utils.objects.GLObject: context

Inherited from object: __class__

Method Details [hide private]

__init__(self, shaders=[], vertex=[], tess_control=[], tess_evaluation=[], geometry=[], fragment=[], link=None, context=None, **variables)
(Constructor)

source code 

Create a new ManagedObject using _generate_id.

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

__setattr__(self, name, value)

source code 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__
(inherited documentation)

_on_bind(self)

source code 

Function to call before binding.

ShaderPrograms, for example, bind textures here.

Overrides: _on_bind

_on_release(self)

source code 

Function to call after releasing.

ShaderPrograms, for example, release textures here.

Overrides: _on_release

Class Variable Details [hide private]

transform_feedback_buffer_modes

Value:
Enum(INTERLEAVED_ATTRIBS, SEPARATE_ATTRIBS)

Property Details [hide private]

shaders

The list of currently attached shaders.

Get Method:
unreachable.shaders(self) - The list of currently attached shaders.
Type:
ListProxy

_log

The current shader info log.

Get Method:
unreachable._log(self) - The current shader info log.
Type:
string