Changeset 702 for trunk/RBRapier/RBRapier/Renderer/DisplayList.py
- Timestamp:
- 09/14/03 14:59:32 (5 years ago)
- Files:
-
- trunk/RBRapier/RBRapier/Renderer/DisplayList.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/RBRapier/RBRapier/Renderer/DisplayList.py
r432 r702 44 44 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 45 45 46 def Execute(self, context):46 def GLExecute(self, context): 47 47 if self.__RecreateCache: 48 48 if __debug__: … … 52 52 self.__ListId = GL.glGenLists(1) 53 53 GL.glNewList(self.__ListId, GL.GL_COMPILE) 54 super(DisplayList, self). Execute(context)54 super(DisplayList, self).GLExecute(context) 55 55 GL.glEndList() 56 56 if __debug__:
