Changeset 536 for trunk/thune/gl/draw_list.c
- Timestamp:
- 06/06/08 18:55:03 (6 months ago)
- Files:
-
- 1 modified
-
trunk/thune/gl/draw_list.c (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/gl/draw_list.c
r533 r536 1263 1263 Returns zero if an error occurred. 1264 1264 */ 1265 int u g_runDrawList( UThread* ut, UCell* val )1265 int ur_runDrawList( UThread* ut, UCell* val ) 1266 1266 { 1267 1267 UBlock* blk = ur_blockPtr( val->series.n ); … … 1312 1312 glCallList( ur_dlGL(val) ); 1313 1313 } 1314 else if( ! u g_runDrawList( ut, val ) )1314 else if( ! ur_runDrawList( ut, val ) ) 1315 1315 return 0; 1316 1316 } … … 1727 1727 if( ur_is(pc, UT_BLOCK) ) 1728 1728 { 1729 if( ! u g_runDrawList( ut, pc ) )1729 if( ! ur_runDrawList( ut, pc ) ) 1730 1730 return 0; 1731 1731 } … … 1795 1795 1796 1796 1797 int u g_compileDrawList( UThread* ut, UCell* blkCell, GLuint dl )1797 int ur_compileDrawList( UThread* ut, UCell* blkCell, GLuint dl ) 1798 1798 { 1799 1799 int ok; … … 1805 1805 1806 1806 glNewList( dl, GL_COMPILE ); 1807 ok = u g_runDrawList( ut, blkCell );1807 ok = ur_runDrawList( ut, blkCell ); 1808 1808 glEndList(); 1809 1809 … … 1848 1848 1849 1849 gr_clearState(); 1850 if( ! u g_compileDrawList( ut, tos, ur_dlGL(res) ) )1850 if( ! ur_compileDrawList( ut, tos, ur_dlGL(res) ) ) 1851 1851 return; 1852 1852 } … … 1876 1876 { 1877 1877 gr_clearState(); 1878 u g_runDrawList( ut, tos );1878 ur_runDrawList( ut, tos ); 1879 1879 } 1880 1880 }
