Changeset 1358 for trunk/pysoy/include

Show
Ignore:
Timestamp:
09/10/08 15:02:17 (3 months ago)
Author:
DavidCzech
Message:

* No Ticket : Changing Axis to VBO

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pysoy/include/soy.models.pxd

    r1272 r1358  
    9999  cdef void                         _renderSurf    ( self ) 
    100100  cdef void                         _renderBottom  ( self ) 
     101 
     102cdef class Axis (Model) : 
     103  cdef gl.GLuint                    _vertexBuffer# VBO ids 
     104  cdef gl.GLuint                    _elementBuffer 
     105  cdef float                        _axis[12] # contains both vertex and color data 
     106  cdef char                         _elements[2] # contains infomation to render the above vertex data in order 
     107  cdef void                         _createBuffer  ( self ) 
     108   
     109 
     110