Changeset 512 for trunk/thune/eval.c

Show
Ignore:
Timestamp:
02/16/08 17:53:55 (9 months ago)
Author:
krobillard
Message:

font! can now be made from a raster! & binary!.
Re-wrote TexFont? to simplify storage.
'to now works for custom datatypes.
Added .t
if/ now requires selector.
Can make vector! (int) from binary!
Can load PNG from binary!
Added FindThuneGL.cmake

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/eval.c

    r511 r512  
    13201320            } 
    13211321            break; 
     1322    } 
     1323 
     1324    if( ur_type(val) >= UT_BI_COUNT ) 
     1325    { 
     1326        UCall func = ut->env->customDT[ ur_type(val) - UT_BI_COUNT ].toType; 
     1327        func( ut, tos ); 
     1328        return; 
    13221329    } 
    13231330