Changeset 310 for trunk/thune/tests

Show
Ignore:
Timestamp:
11/20/06 03:13:29 (2 years ago)
Author:
krobillard
Message:

Thune -

Renamed UBuffer to UResource.
coord! 'make now resolves words.

Thune GL -

Added framebuffer! datatype.
Added 'framebuffer, 'particle, and 'rotate draw list opcodes.
Can now load grayscale PNG with alpha (alpha is ignored).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/tests/working/context.t

    r210 r310  
    1616'b c3 get . 
    1717;'c1 get .  ; lit-word! are currently unbound. 
     18 
     19 
     20/* 
     21"--- clone deep ---" print 
     22context! [ 
     23    0 :val 
     24    [a b] :blk 
     25    [n] [n :val] func :f 
     26    [val . blk .] proc :dmp 
     27] make :c4 
     28c4 [blk 'new-a 1 poke] make :c5 
     295 c4/f 
     302 c5/f 
     31c4 . 
     32c5 . 
     33c5/dmp 
     34c4/dmp 
     35*/