Show
Ignore:
Timestamp:
06/06/08 18:55:03 (6 months ago)
Author:
krobillard
Message:

Public headers now live in thune/ subdirectory.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/gl/draw_list.c

    r533 r536  
    12631263   Returns zero if an error occurred. 
    12641264*/ 
    1265 int ug_runDrawList( UThread* ut, UCell* val ) 
     1265int ur_runDrawList( UThread* ut, UCell* val ) 
    12661266{ 
    12671267    UBlock* blk = ur_blockPtr( val->series.n ); 
     
    13121312                        glCallList( ur_dlGL(val) ); 
    13131313                    } 
    1314                     else if( ! ug_runDrawList( ut, val ) ) 
     1314                    else if( ! ur_runDrawList( ut, val ) ) 
    13151315                        return 0; 
    13161316                } 
     
    17271727                if( ur_is(pc, UT_BLOCK) ) 
    17281728                { 
    1729                     if( ! ug_runDrawList( ut, pc ) ) 
     1729                    if( ! ur_runDrawList( ut, pc ) ) 
    17301730                        return 0; 
    17311731                } 
     
    17951795 
    17961796 
    1797 int ug_compileDrawList( UThread* ut, UCell* blkCell, GLuint dl ) 
     1797int ur_compileDrawList( UThread* ut, UCell* blkCell, GLuint dl ) 
    17981798{ 
    17991799    int ok; 
     
    18051805 
    18061806    glNewList( dl, GL_COMPILE ); 
    1807     ok = ug_runDrawList( ut, blkCell ); 
     1807    ok = ur_runDrawList( ut, blkCell ); 
    18081808    glEndList(); 
    18091809 
     
    18481848 
    18491849        gr_clearState(); 
    1850         if( ! ug_compileDrawList( ut, tos, ur_dlGL(res) ) ) 
     1850        if( ! ur_compileDrawList( ut, tos, ur_dlGL(res) ) ) 
    18511851            return; 
    18521852    } 
     
    18761876        { 
    18771877            gr_clearState(); 
    1878             ug_runDrawList( ut, tos ); 
     1878            ur_runDrawList( ut, tos ); 
    18791879        } 
    18801880    }